1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: fix tests

This commit is contained in:
Alexander Medvednikov 2019-12-08 18:07:04 +03:00
parent 1c6f7180b2
commit d58982a6f6

View File

@ -192,7 +192,8 @@ pub fn run<T>(app mut T, port int) {
conn.write(HTTP_404) or {}
}
conn.close() or {}
app.reset()
reset := 'reset'
app.$reset()
}
}