Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Sep 28, 2023
1 parent 35f7196 commit 37f5ec4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flow/connectors/postgres/postgres_cdc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,10 @@ func (suite *PostgresCDCTestSuite) TestErrorForTableNotExist() {
RelationMessageMapping: relationMessageMapping,
})
suite.Nil(recordsWithSchemaDelta)
suite.Errorf(err, "error while closing statement batch: ERROR: relation \"%s\" does not exist (SQLSTATE 42P01)", nonExistentFlowSrcTableName)
suite.Errorf(
err,
"error while closing statement batch: ERROR: relation \"%s\" does not exist (SQLSTATE 42P01)",
nonExistentFlowSrcTableName)

err = suite.connector.PullFlowCleanup(nonExistentFlowName)
suite.failTestError(err)
Expand Down

0 comments on commit 37f5ec4

Please sign in to comment.