From d102943adc2f5f83bf855a1506efc4e64e048ac4 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Wed, 16 Feb 2022 07:36:47 +1100 Subject: [PATCH] tests: [nfc] conform with double quotes for strings in #1902 --- rtest/test_regression.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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() -- 2.40.0