Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmichalak committed Aug 6, 2024
1 parent 592ceac commit e6f6c2f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/sdk/testint/views_gen_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,7 @@ func TestInt_Views(t *testing.T) {
assert.True(t, rowAccessPolicyReferences[1].RefArgColumnNames.Valid)
refArgColumnNames := sdk.ParseCommaSeparatedStringArray(rowAccessPolicyReferences[1].RefArgColumnNames.String, true)
assert.Len(t, refArgColumnNames, 1)
// TODO: should ParseCommaSeparatedStringArray support other quotes?
assert.Equal(t, `"column_with_comment"`, refArgColumnNames[0])
assert.Equal(t, "column_with_comment", refArgColumnNames[0])
})

t.Run("create view: masking and projection policies", func(t *testing.T) {
Expand Down

0 comments on commit e6f6c2f

Please sign in to comment.