From: Matthew Fernandez Date: Tue, 1 Feb 2022 10:23:20 +0000 (+1100) Subject: test 1594: remove work around for #1780 X-Git-Tag: 3.0.0~44^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a9f3216e6f645eb16a630855f8068a23ea1f65a;p=graphviz test 1594: remove work around for #1780 Issue #1780 was fixed in a286e358006dd49d2b3348abd8a2aebcffd24dec. --- 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()