aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/serd_bench.py2
-rw-r--r--test/lint/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/serd_bench.py b/scripts/serd_bench.py
index e342976b..d964984f 100755
--- a/scripts/serd_bench.py
+++ b/scripts/serd_bench.py
@@ -3,7 +3,7 @@
# Copyright 2018-2023 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: ISC
-""""Benchmark RDF reading and writing commands."""
+"""Benchmark RDF reading and writing commands."""
# pylint: disable=consider-using-f-string
# pylint: disable=consider-using-with
diff --git a/test/lint/meson.build b/test/lint/meson.build
index 7e024cb5..cca43342 100644
--- a/test/lint/meson.build
+++ b/test/lint/meson.build
@@ -64,7 +64,7 @@ if black.found()
black_opts = ['--check', '-q', '-l', '79']
foreach script_path : python_script_paths
script = files(script_path)
- name = script_path.substring(3).underscorify()
+ name = 'black_' + script_path.substring(3).underscorify()
test(name, black, args: black_opts + [script], suite: 'scripts')
endforeach
endif