Skip to content

Commit

Permalink
fix test data path
Browse files Browse the repository at this point in the history
  • Loading branch information
giannisdoukas committed May 26, 2020
1 parent c017adc commit c3cf8ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_CWLKernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,10 +479,10 @@ def test_compose(self):

self.assertDictEqual(
{'status': 'ok', 'execution_count': 0, 'payload': [], 'user_expressions': {}},
kernel.do_execute("""% execute main
kernel.do_execute(f"""% execute main
inputfile:
class: File
location: /Users/dks/Desktop/data.csv""")
location: {os.path.join(self.data_directory, "data.csv")}""")
)


Expand Down

0 comments on commit c3cf8ab

Please sign in to comment.