Skip to content

Commit 1e2e957

Browse files
Use t.skip instead of commenting
1 parent 885fa5f commit 1e2e957

File tree

2 files changed

+559
-3
lines changed

2 files changed

+559
-3
lines changed

tests/boolean_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,9 @@ func TestBooleanStringCoercion(t *testing.T) {
259259
}
260260
}
261261

262-
/*
262+
263263
func TestBooleanNullableColumn(t *testing.T) {
264+
t.Skip("Skipping until nullable bool bug is resolved")
264265
DB.Migrator().DropTable(&BooleanTest{})
265266
DB.AutoMigrate(&BooleanTest{})
266267

@@ -278,5 +279,4 @@ func TestBooleanNullableColumn(t *testing.T) {
278279
if got.Nullable != nil {
279280
t.Errorf("expected NULL, got %v", *got.Nullable)
280281
}
281-
}
282-
*/
282+
}

0 commit comments

Comments
 (0)