From 0e8f9011bfb983ec7b518eee7a4cc80646b5ba71 Mon Sep 17 00:00:00 2001 From: Jinzhu Date: Wed, 4 Dec 2013 10:00:53 +0800 Subject: [PATCH] Remove unnecessary output in tests --- gorm_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/gorm_test.go b/gorm_test.go index a231475a..e6e638af 100644 --- a/gorm_test.go +++ b/gorm_test.go @@ -170,7 +170,6 @@ func TestPrecision(t *testing.T) { var u User db.First(&u, "name = ?", "Precision") - fmt.Println(u.Latitude) if u.Latitude != f { t.Errorf("Float64 should not be changed after query") }