From c01a2da8e9c255ba5ff5b4ba29e0e332c8950881 Mon Sep 17 00:00:00 2001 From: Jim Lambert Date: Fri, 14 Feb 2020 10:06:06 -0500 Subject: [PATCH] remove Debug() --- join_table_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/join_table_test.go b/join_table_test.go index 2a0c3e61..47fda43e 100644 --- a/join_table_test.go +++ b/join_table_test.go @@ -75,7 +75,7 @@ func TestJoinTable(t *testing.T) { t.Errorf("Should found one address") } - if DB.Debug().Model(person).Association("Addresses").Count() != 1 { + if DB.Model(person).Association("Addresses").Count() != 1 { t.Errorf("Should found one address") }