summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Kislyuk <kislyuk@gmail.com>2019-11-05 07:28:28 -0800
committerGitHub <noreply@github.com>2019-11-05 07:28:28 -0800
commit7e33cc2b7e4d6a5de2b244c8ff5ea4f7947d1363 (patch)
treececade4f228154459bf4581a2dee5e302f9ff1a4
parent3992791f96ea02d4060278e1277f70104c3ba22f (diff)
Update test.py
-rwxr-xr-xtest/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py
index f21bbe2..7783005 100755
--- a/test/test.py
+++ b/test/test.py
@@ -132,7 +132,7 @@ class TestYq(unittest.TestCase):
self.assertEqual(self.run_yq("", ["-y", ".xyz.foo", self.fd_path(tf)]), 'bar\n...\n')
def test_roundtrip_yaml(self):
- cfn_filename = os.path.join(os.path.dirname(__file__), "cfn.yaml")
+ cfn_filename = os.path.join(os.path.dirname(__file__), "cfn.yml")
with io.open(cfn_filename) as fh:
self.assertEqual(self.run_yq("", ["-Y", ".", cfn_filename]), fh.read())