Skip to content

Commit df0496c

Browse files
author
Andy Landy
committed
fix tests
1 parent d64149d commit df0496c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def create(cls, label: str):
3535
env_name = sys.platform + '_' + '.'.join(sys.version.split('.')[:2])
3636
dir_path = Path('tests/dumps') / env_name
3737
if update:
38-
dir_path.parent.mkdir(parents=True, exist_ok=True)
38+
dir_path.mkdir(parents=True, exist_ok=True)
3939
return Reg(dir_path=dir_path, label=label, update=update)
4040

4141
def match_tb_text(self, text: str, sub_label: str = '') -> None:

0 commit comments

Comments
 (0)