From 715392f0eb551070f6a9d37f1c1dd0ff683fa5fa Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 24 May 2021 14:49:51 +0900 Subject: [PATCH] Fix typo in associations_test.go 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") } }