summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2021-12-24 09:00:13 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2021-12-24 09:00:13 +0100
commit0e4924ebca62b6767639aad773816a62c6a3c9af (patch)
tree23e89ef595a22bd4b912515e4c7f2bb76f3d7911 /tests
parent94c578817edd68d5baa956c568770eafe46e6f73 (diff)
Removed spurious prints
Diffstat (limited to 'tests')
-rw-r--r--tests/test_commands.py2
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(), '')