Skip to content

Commit

Permalink
[automated] Fix code linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nf-core-bot committed Mar 20, 2024
1 parent 3f754d9 commit d6252f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ def test_make_skeleton_schema(self):
self.schema_obj.pipeline_manifest["description"] = "Test pipeline"
self.schema_obj.make_skeleton_schema()
self.schema_obj.validate_schema(self.schema_obj.schema)
assert self.schema_obj.schema['title'] == "nf-core/test pipeline parameters"
assert self.schema_obj.schema["title"] == "nf-core/test pipeline parameters"

def test_make_skeleton_schema_absent_name(self):
"""Test making a new schema skeleton"""
self.schema_obj.schema_filename = self.template_schema
self.schema_obj.pipeline_manifest["description"] = "Test pipeline"
self.schema_obj.make_skeleton_schema()
self.schema_obj.validate_schema(self.schema_obj.schema)
assert self.schema_obj.schema['title'] == "wf pipeline parameters"
assert self.schema_obj.schema["title"] == "wf pipeline parameters"

def test_get_wf_params(self):
"""Test getting the workflow parameters from a pipeline"""
Expand Down

0 comments on commit d6252f4

Please sign in to comment.