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)