Skip to content

Commit 6be45a0

Browse files
committed
remove Skip tests in query_tests_fix as it already passes
1 parent 98989fd commit 6be45a0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/query_test.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,6 @@ func TestQueryWithAssociation(t *testing.T) {
308308
}
309309

310310
func TestFindInBatches(t *testing.T) {
311-
t.Skip()
312311
users := []User{
313312
*GetUser("find_in_batches", Config{}),
314313
*GetUser("find_in_batches", Config{}),
@@ -361,7 +360,6 @@ func TestFindInBatches(t *testing.T) {
361360
}
362361

363362
func TestFindInBatchesWithOffsetLimit(t *testing.T) {
364-
t.Skip()
365363
users := []User{
366364
*GetUser("find_in_batches_with_offset_limit", Config{}),
367365
*GetUser("find_in_batches_with_offset_limit", Config{}),
@@ -424,7 +422,6 @@ func TestFindInBatchesWithOffsetLimit(t *testing.T) {
424422
}
425423

426424
func TestFindInBatchesWithError(t *testing.T) {
427-
t.Skip()
428425
users := []User{
429426
*GetUser("find_in_batches_with_error", Config{}),
430427
*GetUser("find_in_batches_with_error", Config{}),
@@ -864,7 +861,6 @@ func TestSelect(t *testing.T) {
864861
}
865862

866863
func TestOmit(t *testing.T) {
867-
t.Skip()
868864
user := User{Name: "OmitUser1", Age: 20}
869865
DB.Save(&user)
870866

@@ -880,7 +876,6 @@ func TestOmit(t *testing.T) {
880876
}
881877

882878
func TestOmitWithAllFields(t *testing.T) {
883-
t.Skip()
884879
user := User{Name: "OmitUser1", Age: 20}
885880
DB.Save(&user)
886881

@@ -905,7 +900,6 @@ func TestOmitWithAllFields(t *testing.T) {
905900
}
906901

907902
func TestMapColumns(t *testing.T) {
908-
t.Skip()
909903
user := User{Name: "MapColumnsUser", Age: 12}
910904
DB.Save(&user)
911905

0 commit comments

Comments
 (0)