diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-24 09:00:13 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-24 09:00:13 +0100 |
commit | 0e4924ebca62b6767639aad773816a62c6a3c9af (patch) | |
tree | 23e89ef595a22bd4b912515e4c7f2bb76f3d7911 /tests | |
parent | 94c578817edd68d5baa956c568770eafe46e6f73 (diff) |
Removed spurious prints
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_commands.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py index bd7098c..1a7d83b 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -132,7 +132,6 @@ class testCommandsSimple(unittest.TestCase, CommandsMixin): 'field': 'position', } streams = self._run_command(command.GetValues(), args) - print(streams['stdout'].getvalue()) self.assertIn('somewhere: 2', streams['stdout'].getvalue()) self.assertEqual(streams['stderr'].getvalue(), '') @@ -203,7 +202,6 @@ class testCommandsComplex(unittest.TestCase, CommandsMixin): 'field': 'tags', } streams = self._run_command(command.GetValues(), args) - print(streams['stdout'].getvalue()) self.assertIn('this: 1', streams['stdout'].getvalue()) self.assertEqual(streams['stderr'].getvalue(), '') |