From 6a9f3216e6f645eb16a630855f8068a23ea1f65a Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Tue, 1 Feb 2022 21:23:20 +1100 Subject: [PATCH] test 1594: remove work around for #1780 Issue #1780 was fixed in a286e358006dd49d2b3348abd8a2aebcffd24dec. --- rtest/test_regression.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rtest/test_regression.py b/rtest/test_regression.py index 5f41c54c3..b12a4f785 100644 --- a/rtest/test_regression.py +++ b/rtest/test_regression.py @@ -505,14 +505,10 @@ def test_1594(): """ # locate our associated test case in this directory -# FIXME: remove cwd workaround when -# https://gitlab.com/graphviz/graphviz/-/issues/1780 is fixed -# input = Path(__file__).parent / "1594.gvpr" - input = "1594.gvpr" + input = Path(__file__).parent / "1594.gvpr" # run GVPR with our (malformed) input program with subprocess.Popen(["gvpr", "-f", input], stdin=subprocess.PIPE, - cwd=os.path.join(os.path.dirname(__file__)), stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) as p: _, stderr = p.communicate() -- 2.40.0