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 558034e commit 7a5e439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/io/kestra/plugin/malloy/CLITest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CLITest {
@Test
void task() throws Exception {
List<LogEntry> logs = new ArrayList<>();
logQueue.receive(logs::add);
logQueue.receive(l -> logs.add(l.getLeft()));

CLI bash = CLI.builder()
.id("unit-test")
Expand Down

0 comments on commit 7a5e439

Please sign in to comment.