From 200478395ba42fcb6ba0e6f217ec77410e5509cb Mon Sep 17 00:00:00 2001 From: Jorge Aguilera Date: Wed, 31 Aug 2022 14:48:47 -0400 Subject: [PATCH] feature: add support for label/tags changes merged from master Signed-off-by: Jorge Aguilera --- .../nextflow/cloud/aws/batch/AwsBatchTaskHandlerTest.groovy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/nf-amazon/src/test/nextflow/cloud/aws/batch/AwsBatchTaskHandlerTest.groovy b/plugins/nf-amazon/src/test/nextflow/cloud/aws/batch/AwsBatchTaskHandlerTest.groovy index f2785db8ee..7a78770160 100644 --- a/plugins/nf-amazon/src/test/nextflow/cloud/aws/batch/AwsBatchTaskHandlerTest.groovy +++ b/plugins/nf-amazon/src/test/nextflow/cloud/aws/batch/AwsBatchTaskHandlerTest.groovy @@ -897,12 +897,10 @@ class AwsBatchTaskHandlerTest extends Specification { then: 1 * handler.getSubmitCommand() >> ['sh','-c','hello'] 1 * handler.maxSpotAttempts() >> 5 - 2 * handler.getAwsOptions() >> { new AwsOptions(cliPath: '/bin/aws') } + 1 * handler.getAwsOptions() >> { new AwsOptions(cliPath: '/bin/aws') } 1 * handler.getJobQueue(task) >> 'queue1' 1 * handler.getJobDefinition(task) >> 'job-def:1' 1 * handler.getEnvironmentVars() >> [VAR_FOO, VAR_BAR] - 1 * handler.wrapperFile >> Paths.get('/bucket/test/.command.run') - 1 * handler.getLogFile() >> Paths.get('/bucket/test/.command.log') req.getJobName() == 'batchtask' req.getJobQueue() == 'queue1'