Skip to content

Commit 42ec046

Browse files
committed
tests: fix minor failing test
1 parent 0d9b020 commit 42ec046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class TestFactory(unittest.TestCase):
118118
def test_factory(self):
119119
f = cwltool.factory.Factory()
120120
echo = f.make(get_data("tests/echo.cwl"))
121-
self.assertEqual(echo(inp="foo"), {"out": b"foo\n"})
121+
self.assertEqual(echo(inp="foo"), {"out": "foo\n"})
122122

123123
def test_partial_scatter(self):
124124
f = cwltool.factory.Factory(on_error="continue")

0 commit comments

Comments
 (0)