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

ci: fix autobahn integration tests job

This commit is contained in:
Delyan Angelov 2021-01-26 20:12:12 +02:00
parent dd96852515
commit 2d86c50d49
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -6,7 +6,7 @@ import x.websocket
fn main() {
mut s := websocket.new_server(9002, '/')
s.on_message(on_message)
s.listen()
s.listen() or { panic(err) }
}
fn handle_case(case_nr int) ? {