Skip to content

Commit

Permalink
fix: check in wrong test
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Jan 2, 2024
1 parent fdf9e0a commit 024ad8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flow/e2e/bigquery/peer_flow_bq_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,10 @@ func (s PeerFlowE2ETestSuiteBQ) Test_Types_BQ() {
// Make sure that there are no nulls
require.True(s.t, noNulls)

// check if JSON on bigquery side is a good JSON
err = s.checkJSONValue(dstTableName, "c17", "sai", "1")
require.NoError(s.t, err)

env.AssertExpectations(s.t)
}

Expand Down Expand Up @@ -840,10 +844,6 @@ func (s PeerFlowE2ETestSuiteBQ) Test_Invalid_Geo_BQ_Avro_CDC() {
require.Equal(s.t, 6, lineCount)
require.Equal(s.t, 6, polyCount)

// check if JSON on bigquery side is a good JSON
err = s.checkJSONValue(dstTableName, "c17", "sai", "1")
require.NoError(s.t, err)

env.AssertExpectations(s.t)
}

Expand Down

0 comments on commit 024ad8c

Please sign in to comment.