]> granicus.if.org Git - graphviz/commitdiff
fix: remove unused format arguments in rtest
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Oct 2020 18:58:12 +0000 (11:58 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 31 Oct 2020 02:15:43 +0000 (19:15 -0700)
This was detected by `python3 -m pylint --errors-only rtest/rtest.py`.

rtest/rtest.py

index 560ec8e70988a6c09b8efeaadfa7d9b603b73662..f11ee78d207345d3e7fd8656f97807f1b39dfb6c 100755 (executable)
@@ -250,7 +250,7 @@ def doTest(TEST):
       print('Skipping test {0}:{1} : with flag -Goverlap=false because it fails '
             'with Windows MSBuild builds which are not built with '
             'triangulation library (#1269)'
-            .format(TESTNAME, i, ' '.join(SUBTEST['FLAGS'])),
+            .format(TESTNAME, i),
             file=sys.stderr)
       continue
     # FIXME: Remove when https://gitlab.com/graphviz/graphviz/-/issues/1787 is
@@ -261,7 +261,7 @@ def doTest(TEST):
        TESTNAME == 'user_shapes':
       print('Skipping test {0}:{1} : using shapefile because it fails '
             'with Windows MSBuild Debug builds (#1787)'
-            .format(TESTNAME, i, ' '.join(SUBTEST['FLAGS'])),
+            .format(TESTNAME, i),
             file=sys.stderr)
       continue
     # FIXME: Remove when https://gitlab.com/graphviz/graphviz/-/issues/1790 is
@@ -270,7 +270,7 @@ def doTest(TEST):
        TESTNAME == 'ps_user_shapes':
       print('Skipping test {0}:{1} : using PostScript shapefile because it '
             'fails with Windows builds (#1790)'
-            .format(TESTNAME, i, ' '.join(SUBTEST['FLAGS'])),
+            .format(TESTNAME, i),
             file=sys.stderr)
       continue