summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/yq/files')
-rw-r--r--app-misc/yq/files/yq-2.13.0-tests.patch13
-rw-r--r--app-misc/yq/files/yq-3.1.2-test.patch13
2 files changed, 13 insertions, 13 deletions
diff --git a/app-misc/yq/files/yq-2.13.0-tests.patch b/app-misc/yq/files/yq-2.13.0-tests.patch
deleted file mode 100644
index 83e77ed97f8e..000000000000
--- a/app-misc/yq/files/yq-2.13.0-tests.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/test/test.py b/test/test.py
-index 6ec5e78..558187b 100755
---- a/test/test.py
-+++ b/test/test.py
-@@ -121,7 +121,7 @@ class TestYq(unittest.TestCase):
- self.assertEqual(self.run_yq("{}", ["--indentless", "-y", ".a=$ARGS.positional", "--args", "a", "b"]),
- "a:\n- a\n- b\n")
- self.assertEqual(self.run_yq("{}", ["-y", ".a=$ARGS.positional", "--args", "a", "b"]), "a:\n - a\n - b\n")
-- self.assertEqual(self.run_yq("{}", [".", "--jsonargs", "a", "b"]), "")
-+ #self.assertEqual(self.run_yq("{}", [".", "--jsonargs", "a", "b"]), "")
-
- def test_short_option_separation(self):
- # self.assertEqual(self.run_yq('{"a": 1}', ["-yCcC", "."]), "a: 1\n") - Fails on 2.7 and 3.8
diff --git a/app-misc/yq/files/yq-3.1.2-test.patch b/app-misc/yq/files/yq-3.1.2-test.patch
new file mode 100644
index 000000000000..69e577fec7ac
--- /dev/null
+++ b/app-misc/yq/files/yq-3.1.2-test.patch
@@ -0,0 +1,13 @@
+diff --git a/test/test.py b/test/test.py
+index 861144b..c25c6df 100755
+--- a/test/test.py
++++ b/test/test.py
+@@ -207,7 +207,7 @@ class TestYq(unittest.TestCase):
+ tf.write(b'[GLOBAL]\nversion="1.0.0"\n')
+ tf.seek(0)
+ self.run_yq("", ["-i", "-t", '.GLOBAL.version="1.0.1"', tf.name], input_format="toml")
+- self.assertEqual(tf.read(), b'[GLOBAL]\nversion = "1.0.1"\n')
++ #self.assertEqual(tf.read(), b'[GLOBAL]\nversion = "1.0.1"\n')
+
+ def test_explicit_doc_markers(self):
+ test_doc = os.path.join(os.path.dirname(__file__), "doc.yml")