From 12965bff31a743381e6bd30cec6fecb3409c7214 Mon Sep 17 00:00:00 2001 From: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:55:53 +0000 Subject: [PATCH] remove test because method is removed Signed-off-by: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com> --- .../azure/batch/AzBatchTaskHandlerTest.groovy | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/plugins/nf-azure/src/test/nextflow/cloud/azure/batch/AzBatchTaskHandlerTest.groovy b/plugins/nf-azure/src/test/nextflow/cloud/azure/batch/AzBatchTaskHandlerTest.groovy index fbadbc6fdd..4d2aa5c3e0 100644 --- a/plugins/nf-azure/src/test/nextflow/cloud/azure/batch/AzBatchTaskHandlerTest.groovy +++ b/plugins/nf-azure/src/test/nextflow/cloud/azure/batch/AzBatchTaskHandlerTest.groovy @@ -18,24 +18,6 @@ import spock.lang.Specification */ class AzBatchTaskHandlerTest extends Specification { - def 'should validate config with and without container' () { - when: - def task = Mock(TaskRun) { getName() >> 'foo' } - and: - new AzBatchTaskHandler(task: task) - .validateConfiguration() - then: - noExceptionThrown() - - when: - task = Mock(TaskRun) { getName() >> 'foo'; getContainer() >> 'ubuntu' } - and: - new AzBatchTaskHandler(task: task) - .validateConfiguration() - then: - noExceptionThrown() - } - def 'should submit task' () { given: def builder = Mock(BashWrapperBuilder)