Skip to content

Commit

Permalink
corrected check for missing errors object
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreds committed Jul 2, 2024
1 parent e3d52e4 commit 1693976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/fusionauth/Client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func TestRetrieveUserSuccess(t *testing.T) {
errJson, _ := json.Marshal(errors)
fmt.Println(string(errJson))

assert.Equal(t, nil, errors)
assert.Equal(t, (*Errors)(nil), errors)
assert.Equal(t, 200, userResponse.StatusCode)
}

Expand Down

0 comments on commit 1693976

Please sign in to comment.