From bcf2b385a457ecd0c03f900abaf6c47f8b407c9f Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 27 May 2021 18:40:28 +0900 Subject: [PATCH] Fix typo in associations_test.go (#4407) occured -> occurred --- tests/associations_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/associations_test.go b/tests/associations_test.go index f470338f..3b270625 100644 --- a/tests/associations_test.go +++ b/tests/associations_test.go @@ -64,7 +64,7 @@ func TestAssociationNotNullClear(t *testing.T) { } if err := DB.Model(member).Association("Profiles").Clear(); err == nil { - t.Fatalf("No error occured during clearind not null association") + t.Fatalf("No error occurred during clearind not null association") } }