Skip to content

Commit e9bfb28

Browse files
committed
Remove extrac spaces
1 parent 3e1218d commit e9bfb28

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_defaults.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,17 +307,17 @@ def dummy_func(a, b=2):
307307
dummy_func.clear_cache()
308308
assert count == 0
309309
with pytest.deprecated_call(
310-
match="`verbose_cache` is deprecated and will be removed"
310+
match="`verbose_cache` is deprecated and will be removed"
311311
):
312312
assert dummy_func(1, verbose_cache=True) == 3
313313
assert count == 1
314314
with pytest.deprecated_call(
315-
match="`ignore_cache` is deprecated and will be removed"
315+
match="`ignore_cache` is deprecated and will be removed"
316316
):
317317
assert dummy_func(1, ignore_cache=True) == 3
318318
assert count == 2
319319
with pytest.deprecated_call(
320-
match="`overwrite_cache` is deprecated and will be removed"
320+
match="`overwrite_cache` is deprecated and will be removed"
321321
):
322322
assert dummy_func(1, overwrite_cache=True) == 3
323323
assert count == 3

0 commit comments

Comments
 (0)