Skip to content

Commit 8410d6d

Browse files
committed
Fixed typo
1 parent e5a0c6f commit 8410d6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/helpers/patches/_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ def _run(self):
349349
for k in self.inputs.model_fields:
350350
utils.warn(f'Input {k} differs')
351351
for x in getattr(self.inputs, k):
352-
utils.warn(f'input {k}: ', x)
352+
utils.warn(f'input {k}: {x}')
353353
for x in getattr(bench_process.inputs, k):
354-
utils.warn(f'bench {k}: ', x)
354+
utils.warn(f'bench {k}: {x}')
355355
raise ValueError()
356356

357357
unpatched_run(self)

0 commit comments

Comments
 (0)