Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit de1fcda

Browse files
committed
Correct tests AGAIN
1 parent 38b48b7 commit de1fcda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/nf-validation/src/test/nextflow/validation/PluginExtensionMethodsTest.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ class PluginExtensionMethodsTest extends Dsl2Spec{
447447

448448
def 'should ignore s3 path' () {
449449
given:
450-
def schema = Path.of('src/testResources/nextflow_schema_with_samplesheet.json').toAbsolutePath().toString()
450+
def schema = Path.of('src/testResources/nextflow_schema_file_cloud_path.json').toAbsolutePath().toString()
451451
def SCRIPT_TEXT = """
452452
params.input = 's3://fake/path'
453453
include { validateParameters } from 'plugin/nf-validation'
@@ -469,7 +469,7 @@ class PluginExtensionMethodsTest extends Dsl2Spec{
469469

470470
def 'should ignore az path' () {
471471
given:
472-
def schema = Path.of('src/testResources/nextflow_schema_with_samplesheet.json').toAbsolutePath().toString()
472+
def schema = Path.of('src/testResources/nextflow_schema_file_cloud_path.json').toAbsolutePath().toString()
473473
def SCRIPT_TEXT = """
474474
params.input = 'az://fake/path'
475475
include { validateParameters } from 'plugin/nf-validation'
@@ -491,7 +491,7 @@ class PluginExtensionMethodsTest extends Dsl2Spec{
491491

492492
def 'should ignore gs path' () {
493493
given:
494-
def schema = Path.of('src/testResources/nextflow_schema_with_samplesheet.json').toAbsolutePath().toString()
494+
def schema = Path.of('src/testResources/nextflow_schema_file_cloud_path.json').toAbsolutePath().toString()
495495
def SCRIPT_TEXT = """
496496
params.input = 'gs://fake/path'
497497
include { validateParameters } from 'plugin/nf-validation'

0 commit comments

Comments
 (0)