You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
577 B

diff --git a/test/test.py b/test/test.py
index a81f41b..f17f03c 100755
--- a/test/test.py
+++ b/test/test.py
@@ -84,7 +84,7 @@ class TestYq(unittest.TestCase):
unusable_tty_input = mock.Mock()
unusable_tty_input.isatty = mock.Mock(return_value=True)
- self.run_yq("{}", [], expect_exit_codes={0} if sys.stdin.isatty() else {2})
+ self.run_yq("{}", [], expect_exit_codes={0})
self.run_yq("{}", ["."])
self.run_yq(unusable_non_tty_input, [".", test_doc])
self.run_yq(unusable_non_tty_input, [".", test_doc, test_doc])