From: Matthew Fernandez Date: Tue, 15 Feb 2022 20:36:47 +0000 (+1100) Subject: tests: [nfc] conform with double quotes for strings in #1902 X-Git-Tag: 3.0.0~24^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d102943adc2f5f83bf855a1506efc4e64e048ac4;p=graphviz tests: [nfc] conform with double quotes for strings in #1902 --- diff --git a/rtest/test_regression.py b/rtest/test_regression.py index 18d1fa831..e1467ac80 100644 --- a/rtest/test_regression.py +++ b/rtest/test_regression.py @@ -793,18 +793,18 @@ def test_1898(): @pytest.mark.xfail(strict=not is_ndebug_defined()) # FIXME def test_1902(): - ''' + """ test a segfault from https://gitlab.com/graphviz/graphviz/-/issues/1902 has not reappeared - ''' + """ # locate our associated test case in this directory - input = Path(__file__).parent / '1902.dot' - assert input.exists(), 'unexpectedly missing test case' + input = Path(__file__).parent / "1902.dot" + assert input.exists(), "unexpectedly missing test case" # ask Graphviz to process it, which should generate a segfault if this bug # has been reintroduced - dot('svg', input) + dot("svg", input) # root directory of this checkout ROOT = Path(__file__).parent.parent.resolve()