test(transport): add unit tests for transport behavior using Testify

This commit is contained in:
2026-01-22 19:22:35 +07:00
parent e534972abc
commit 29cabe42d3
13 changed files with 1346 additions and 26 deletions
+1 -1
View File
@@ -35,6 +35,6 @@ func (ht *httpServer) Serve(listener net.Listener) error {
continue
}
go ht.handler.handler(conn, false)
go ht.handler.Handler(conn, false)
}
}