Skip to content

Commit

Permalink
refactor(test): adjust to last oss queue signature
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Sep 5, 2023
1 parent 98168dc commit debd033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/io/kestra/plugin/fs/AbstractTriggerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ void flow() throws Exception {

// wait for execution
executionQueue.receive(AbstractTriggerTest.class, execution -> {
last.set(execution);
last.set(execution.getLeft());

queueCount.countDown();
assertThat(execution.getFlowId(), containsString("ftp-listen"));
assertThat(execution.getLeft().getFlowId(), containsString("ftp-listen"));
});


Expand Down

0 comments on commit debd033

Please sign in to comment.