We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d64149d commit df0496cCopy full SHA for df0496c
tests/test_utils.py
@@ -35,7 +35,7 @@ def create(cls, label: str):
35
env_name = sys.platform + '_' + '.'.join(sys.version.split('.')[:2])
36
dir_path = Path('tests/dumps') / env_name
37
if update:
38
- dir_path.parent.mkdir(parents=True, exist_ok=True)
+ dir_path.mkdir(parents=True, exist_ok=True)
39
return Reg(dir_path=dir_path, label=label, update=update)
40
41
def match_tb_text(self, text: str, sub_label: str = '') -> None:
0 commit comments