Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
XIELongDragon committed Oct 6, 2024
1 parent 09d0024 commit a31e114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exp/insert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (iets *insertExpressionTestSuite) TestNewInsertExpression_withStructsWithGo
testRecord{FieldA: 2, FieldB: false, FieldC: "b"},
)
iets.NoError(err)
iets.Equal(exp.NewColumnListExpression(nil, "fielda", "fieldb"), ie.Cols())
iets.Equal(exp.NewColumnListExpression(nil, "db", "fielda", "fieldb"), ie.Cols())
iets.Equal([][]interface{}{{int64(1), true}, {int64(2), false}}, ie.Vals())
iets.False(ie.IsEmpty())
iets.False(ie.IsInsertFrom())
Expand Down

0 comments on commit a31e114

Please sign in to comment.