rmm commited on
Commit
cfbfcc8
·
1 Parent(s): 6cdc7e8

test: added expected args to the nooop guard for multi-run mock

Browse files
Files changed (1) hide show
  1. tests/test_main.py +1 -1
tests/test_main.py CHANGED
@@ -34,7 +34,7 @@ def debug_check_images(at:AppTest, msg:str=""):
34
  else:
35
  print(f"image {i}: {type(img)} [{key}]")
36
 
37
- def nooop():
38
  _cprint("skipping the buffering -- shoul only happen once", FAIL)
39
  raise RuntimeError
40
  pass
 
34
  else:
35
  print(f"image {i}: {type(img)} [{key}]")
36
 
37
+ def nooop(*args, **kwargs):
38
  _cprint("skipping the buffering -- shoul only happen once", FAIL)
39
  raise RuntimeError
40
  pass