fixup! more specific test assertion

This commit is contained in:
Chelsea Holland Komlo 2018-06-13 09:58:40 -04:00
parent dca7235ca5
commit da712f4f47
1 changed files with 1 additions and 1 deletions

View File

@ -865,7 +865,7 @@ func TestConfig_ShouldReloadRPCConnections(t *testing.T) {
for _, testCase := range testInput {
shouldReload, err := ShouldReloadRPCConnections(testCase.old, testCase.new)
require.Nil(err)
require.NoError(err)
require.Equal(shouldReload, testCase.shouldReload, testCase.errorStr)
}
}