Skip to content

Commit b95c1cb

Browse files
committed
tf converter test fix
1 parent 61a0c85 commit b95c1cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_tensorflowjs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ class TestTensorflowjs(unittest.TestCase):
66
def test_version(self):
77
result = subprocess.run([
88
'tensorflowjs_converter',
9-
'--version',
9+
'--help',
1010
],
1111
stdout=subprocess.PIPE,
1212
stderr=subprocess.PIPE,
1313
)
1414

15-
print("tensorflowjs_converter version: ", result)
15+
print("tensorflowjs_converter help: ", result)
1616

1717
self.assertEqual(0, result.returncode)
1818
self.assertIn(b'tensorflowjs', result.stdout)

0 commit comments

Comments
 (0)