From d8e1526ef265ebdeb3232864e8f9729276aeb347 Mon Sep 17 00:00:00 2001 From: Yuli Date: Thu, 5 Mar 2020 10:34:12 +0200 Subject: [PATCH] fix typo --- src/consent_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/consent_test.go b/src/consent_test.go index c50c7f3..0ba404d 100644 --- a/src/consent_test.go +++ b/src/consent_test.go @@ -152,14 +152,14 @@ func TestCreateWithdrawConsent(t *testing.T) { func TestGetFakeBrief(t *testing.T) { raw, _ := helpGetAllUsersByBrief("unknown") if _, ok := raw["status"]; !ok || raw["status"].(string) != "ok" { - t.Fatalf("Should fale to get all users with this brif") + t.Fatalf("Should fail to get all users with this brief") } if raw["total"].(float64) != 0 { t.Fatalf("Wrong number of briefs") } raw, _ = helpGetAllUsersByBrief("unk$nown") if _, ok := raw["status"]; !ok || raw["status"].(string) != "ok" { - t.Fatalf("Should fale to get all users with this brif") + t.Fatalf("Should fail to get all users with this brief") } if raw["total"].(float64) != 0 { t.Fatalf("Wrong number of briefs")