2
0

Fix test with formatting directive

This commit is contained in:
Jack Christensen
2018-05-17 16:45:01 -05:00
parent 6044dcbe21
commit e04f5443d5
+1 -1
View File
@@ -2085,7 +2085,7 @@ func TestDomainType(t *testing.T) {
t.Fatal("Expected data type for domain uint64 to be present") t.Fatal("Expected data type for domain uint64 to be present")
} }
if dt, ok := dt.Value.(*pgtype.Numeric); !ok { if dt, ok := dt.Value.(*pgtype.Numeric); !ok {
t.Fatal("Expected data type value for domain uint64 to be *pgtype.Numeric, but it was %T", dt) t.Fatalf("Expected data type value for domain uint64 to be *pgtype.Numeric, but it was %T", dt)
} }
var n uint64 var n uint64