🎨 Format redundant stringify test outputs

This commit is contained in:
Maxim Lebedev 2024-05-15 12:11:13 +05:00
parent a3e9d67743
commit 9f5bfc3ea6
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ func TestGet(t *testing.T) {
scope.Und,
url.URL{},
)); diff != "" {
t.Errorf("%+s", diff)
t.Error(diff)
}
})
}

View File

@ -54,7 +54,7 @@ func TestGet(t *testing.T) {
}
if diff := cmp.Diff(user, result, cmp.AllowUnexported(domain.Me{}, domain.Email{})); diff != "" {
t.Errorf("%+s", diff)
t.Error(diff)
}
}