Skip to content

Commit

Permalink
really fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDoanRivian committed Dec 12, 2024
1 parent fc69346 commit 5bad354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/nebula-cert/verify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func Test_verify(t *testing.T) {
err = verify([]string{"-ca", caFile.Name(), "-crt", "does_not_exist"}, ob, eb)
assert.Equal(t, "", ob.String())
assert.Equal(t, "", eb.String())
assert.EqualError(t, err, "unable to read crt; open does_not_exist: "+NoSuchFileError)
assert.EqualError(t, err, "unable to read crt: open does_not_exist: "+NoSuchFileError)

// invalid crt at path
ob.Reset()
Expand Down

0 comments on commit 5bad354

Please sign in to comment.