Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbr0wn committed Aug 17, 2024
1 parent 6a639cc commit d59efe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/syntax/syntax_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestIsValidEmailSyntax(t *testing.T) {

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IsValidEmailSyntax(tt.email); got != tt.want {
if got, _ := IsValidEmailSyntax(tt.email); got != tt.want {
t.Errorf("IsValidEmailSyntax(%q) = %v, want %v", tt.email, got, tt.want)
}
})
Expand Down

0 comments on commit d59efe5

Please sign in to comment.