mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Flag failure on correct boolean
This commit is contained in:
parent
c788d3ca59
commit
1f779b99d4
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ func TestServerRegisterName(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
svc, ok := server.services.services[svcName]
|
svc, ok := server.services.services[svcName]
|
||||||
if ok {
|
if !ok {
|
||||||
t.Fatalf("Expected service %s to be registered", svcName)
|
t.Fatalf("Expected service %s to be registered", svcName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue