Skip to content

Commit

Permalink
Fixing userparser test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ariasmn committed Jul 18, 2022
1 parent a82e41b commit 6ae79f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userparser/userparser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ func TestGetUsers(t *testing.T) {
got := GetUsers()

if reflect.TypeOf(got) != reflect.TypeOf(want) {
t.Errorf("got %q, wanted %q", got, want)
t.Errorf("got %q, wanted %q", reflect.TypeOf(got), reflect.TypeOf(want))
}
}

0 comments on commit 6ae79f4

Please sign in to comment.