From e1efa98bdea7d0b10a54ef047327a26714701f47 Mon Sep 17 00:00:00 2001 From: Edward Linscott Date: Fri, 4 Oct 2024 09:57:44 +0200 Subject: [PATCH] Remove erroneous self.prefix --- tests/helpers/patches/_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/patches/_check.py b/tests/helpers/patches/_check.py index 64506ec1a..2f1324ebf 100644 --- a/tests/helpers/patches/_check.py +++ b/tests/helpers/patches/_check.py @@ -345,7 +345,7 @@ def _run(self): # Compare the inputs if not bench_process.inputs == self.inputs: - utils.warn(f'Inputs for {self.prefix} differ from the benchmark') + utils.warn(f'Inputs differ from the benchmark') utils.warn(f'Inputs: {self.inputs}') utils.warn(f'Benchmark inputs: {bench_process.inputs}') raise ValueError()