Skip to content

Commit

Permalink
test: remove print, add check on record count
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Nov 16, 2023
1 parent ff16836 commit a052e93
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flow/e2e/snowflake/peer_flow_sf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1418,10 +1418,9 @@ func (s *PeerFlowE2ETestSuiteSF) Test_Column_Exclusion(t *testing.T) {
sfRows, err := s.sfHelper.ExecuteAndProcessQuery(query)
require.NoError(t, err)

fmt.Printf("%v\n", sfRows.Schema.Fields)
for _, field := range sfRows.Schema.Fields {
require.NotEqual(t, field.Name, "c2")
}
require.Equal(t, 4, len(sfRows.Schema.Fields))
// TODO inspect content
require.Equal(t, 10, len(sfRows.Records))
}

0 comments on commit a052e93

Please sign in to comment.