Commit 95a9548 1 parent a57dafb commit 95a9548 Copy full SHA for 95a9548
File tree 1 file changed +2
-2
lines changed
src/test/java/io/kestra/plugin/aws/s3
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ void deleteAction() throws Exception {
61
61
AtomicReference <Execution > last = new AtomicReference <>();
62
62
63
63
// wait for execution
64
- executionQueue .receive (TriggerTest . class , executionWithError -> {
64
+ executionQueue .receive (executionWithError -> {
65
65
Execution execution = executionWithError .getLeft ();
66
66
67
67
if (execution .getFlowId ().equals ("s3-listen" )) {
@@ -106,7 +106,7 @@ void noneAction() throws Exception {
106
106
// wait for execution
107
107
CountDownLatch queueCount = new CountDownLatch (1 );
108
108
AtomicReference <Execution > last = new AtomicReference <>();
109
- executionQueue .receive (TriggerTest . class , executionWithError -> {
109
+ executionQueue .receive (executionWithError -> {
110
110
Execution execution = executionWithError .getLeft ();
111
111
112
112
if (execution .getFlowId ().equals ("s3-listen-none-action" )) {
You can’t perform that action at this time.
0 commit comments