Skip to content

Commit

Permalink
Fixed a test assertion expected/actual order
Browse files Browse the repository at this point in the history
  • Loading branch information
tomikazi committed Dec 8, 2020
1 parent 3d9f814 commit 02f3c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gnmi/singlestatetest.go
Expand Up @@ -60,7 +60,7 @@ func (s *TestSuite) TestSingleState(t *testing.T) {
success = true
break
}
assert.Equal(t, success, true, "state value was not found")
assert.Equal(t, true, success, "state value was not found")

// Shut down the device we created
gnmi.DeleteSimulator(t, simulator)
Expand Down

0 comments on commit 02f3c98

Please sign in to comment.