File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ func TestCustomizeColumn(t *testing.T) {
6565 }
6666
6767 var cc1 CustomizeColumn
68- DB .First (& cc1 , "mapped_name = ?" , "foo" )
68+ DB .First (& cc1 , "\" mapped_name\" = ?" , "foo" )
6969
7070 if cc1 .Name != expected {
7171 t .Errorf ("Failed to query CustomizeColumn" )
@@ -75,7 +75,7 @@ func TestCustomizeColumn(t *testing.T) {
7575 DB .Save (& cc )
7676
7777 var cc2 CustomizeColumn
78- DB .First (& cc2 , "mapped_id = ?" , 666 )
78+ DB .First (& cc2 , "\" mapped_id\" = ?" , 666 )
7979 if cc2 .Name != "bar" {
8080 t .Errorf ("Failed to query CustomizeColumn" )
8181 }
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ TestCreateWithAutoIncrementCompositeKey
6868TestCreateOnConflictWithDefaultNull
6969TestCreateFromMapWithoutPK
7070TestCreateFromMapWithTable
71- # TestCustomizeColumn
71+ TestCustomizeColumn
7272TestCustomColumnAndIgnoredFieldClash
7373TestCustomizeField
7474TestDefaultValue
@@ -142,7 +142,7 @@ TestJoinOn
142142TestJoinsWithSelect
143143TestJoinWithOmit
144144TestJoinCount
145- # TestJoinWithSoftDeleted
145+ TestJoinWithSoftDeleted
146146TestInnerJoins
147147TestJoinWithSameColumnName
148148TestJoinArgsWithDB
You can’t perform that action at this time.
0 commit comments