From c7b96e6abf06310e6f63f3ef33f46c80a43ec1d3 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Tue, 1 Feb 2022 21:19:29 +1100 Subject: [PATCH] test 1449: [nfc] do not capture stdout Graphviz is being passed `-o /dev/null` in this test case, so there is no need to capture stdout. --- rtest/test_regression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtest/test_regression.py b/rtest/test_regression.py index 267d52f45..a9e84c646 100644 --- a/rtest/test_regression.py +++ b/rtest/test_regression.py @@ -487,7 +487,7 @@ def test_1449(): # start Graphviz with subprocess.Popen(["dot", "-Tsvg", "-o", os.devnull], - stdin=subprocess.PIPE, stdout=subprocess.PIPE, + stdin=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) as p: # pass it some input that uses the SVG color scheme -- 2.40.0