Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Nov 28, 2023
1 parent 43dfd36 commit 6920f1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/scripts/run-backfill-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ test_backfill_tombstone() {
fields.v1._.kind = 'sequence',
datagen.rows.per.second = '2000000'
)
FORMAT DEBEZIUM
FORMAT PLAIN
ENCODE JSON;
"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,10 @@ async fn test_sink_create() -> Result<()> {
let mut session2 = cluster.start_session();
tokio::spawn(async move {
session2.run(SET_RATE_LIMIT_2).await.unwrap();
let result = session2
session2
.run("CREATE SINK s FROM t WITH (connector='blackhole');")
.await;
.await
.expect("create sink should succeed");
});

// Wait for job to start
Expand Down

0 comments on commit 6920f1e

Please sign in to comment.