Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinblack committed Nov 3, 2023
1 parent 1c9f7af commit f8adadf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_arcaflow_plugin_template_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@ def test_serialization():
def test_functional(self):
input = arcaflow_plugin_template_python.InputParams(name="Example Joe")

output_id, output_data = arcaflow_plugin_template_python.hello_world(params=input, run_id="plugin_ci")
output_id, output_data = arcaflow_plugin_template_python.hello_world(
params=input, run_id="plugin_ci"
)

# The example plugin always returns an error:
self.assertEqual("success", output_id)
self.assertEqual(
output_data,
arcaflow_plugin_template_python.SuccessOutput("Hello, Example Joe!")
arcaflow_plugin_template_python.SuccessOutput("Hello, Example Joe!"),
)


Expand Down

0 comments on commit f8adadf

Please sign in to comment.