File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments