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

Commit

Permalink
Correct tests AGAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrtalbot committed Jul 5, 2024
1 parent 38b48b7 commit de1fcda
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ class PluginExtensionMethodsTest extends Dsl2Spec{

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

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

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

0 comments on commit de1fcda

Please sign in to comment.