Skip to content

Commit 488bbae

Browse files
removing "skip" from passing tests
1 parent 05163e3 commit 488bbae

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

tests/associations_many2many_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,6 @@ func TestSingleTableMany2ManyAssociationForSlice(t *testing.T) {
372372
}
373373

374374
func TestDuplicateMany2ManyAssociation(t *testing.T) {
375-
t.Skip()
376375
user1 := User{Name: "TestDuplicateMany2ManyAssociation-1", Languages: []Language{
377376
{Code: "TestDuplicateMany2ManyAssociation-language-1"},
378377
{Code: "TestDuplicateMany2ManyAssociation-language-2"},
@@ -436,7 +435,6 @@ func TestConcurrentMany2ManyAssociation(t *testing.T) {
436435
}
437436

438437
func TestMany2ManyDuplicateBelongsToAssociation(t *testing.T) {
439-
t.Skip()
440438
user1 := User{Name: "TestMany2ManyDuplicateBelongsToAssociation-1", Friends: []*User{
441439
{Name: "TestMany2ManyDuplicateBelongsToAssociation-friend-1", Company: Company{
442440
ID: 1,

tests/generics_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,6 @@ func TestGenericsJoins(t *testing.T) {
422422
}
423423

424424
func TestGenericsNestedJoins(t *testing.T) {
425-
t.Skip()
426425
users := []User{
427426
{
428427
Name: "generics-nested-joins-1",

tests/joins_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,8 +383,6 @@ func TestJoinArgsWithDB(t *testing.T) {
383383
}
384384

385385
func TestNestedJoins(t *testing.T) {
386-
t.Skip()
387-
388386
users := []User{
389387
{
390388
Name: "nested-joins-1",

tests/query_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,6 @@ func TestQueryScannerWithSingleColumn(t *testing.T) {
13931393
}
13941394

13951395
func TestQueryResetNullValue(t *testing.T) {
1396-
t.Skip()
13971396
type QueryResetItem struct {
13981397
ID string `gorm:"type:varchar(5)"`
13991398
Name string

0 commit comments

Comments
 (0)