Skip to content

Commit

Permalink
show error if unexpected error in TestRuntimeParameters
Browse files Browse the repository at this point in the history
  • Loading branch information
rekby committed May 31, 2023
1 parent 490b9b8 commit 5bcc157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn_test.go
Expand Up @@ -1501,7 +1501,7 @@ func TestRuntimeParameters(t *testing.T) {
}

value, success := tryGetParameterValue()
if success != test.success && !test.success {
if success != test.success && !success {
t.Fatalf("%v: unexpected error: %v", test.conninfo, err)
}
if success != test.success {
Expand Down

0 comments on commit 5bcc157

Please sign in to comment.