Flag failure on correct boolean

This commit is contained in:
Hyunchel Kim 2023-09-29 11:13:50 -04:00
parent c788d3ca59
commit 1f779b99d4
No known key found for this signature in database
GPG key ID: 0436BF9838B5CCC5

View file

@ -42,7 +42,7 @@ func TestServerRegisterName(t *testing.T) {
}
svc, ok := server.services.services[svcName]
if ok {
if !ok {
t.Fatalf("Expected service %s to be registered", svcName)
}