ci: fix autobahn integration tests job

pull/8425/head
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
1 changed files with 1 additions and 1 deletions

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) ? {