We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a0c85 commit b95c1cbCopy full SHA for b95c1cb
tests/test_tensorflowjs.py
@@ -6,13 +6,13 @@ class TestTensorflowjs(unittest.TestCase):
6
def test_version(self):
7
result = subprocess.run([
8
'tensorflowjs_converter',
9
- '--version',
+ '--help',
10
],
11
stdout=subprocess.PIPE,
12
stderr=subprocess.PIPE,
13
)
14
15
- print("tensorflowjs_converter version: ", result)
+ print("tensorflowjs_converter help: ", result)
16
17
self.assertEqual(0, result.returncode)
18
self.assertIn(b'tensorflowjs', result.stdout)
0 commit comments