Skip to content

Commit e4761e2

Browse files
Fix reset_tests.py
Fixed a bug in `reset_file_dir_test_directory` function in reset_tests.py
1 parent 63b8065 commit e4761e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/reset_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def reset_file_dir_test_directory(
3939
(directory / direc).mkdir()
4040

4141
for file in file_listings:
42-
(directory / file).mkdir()
42+
(directory / file).touch()
4343

4444

4545
if __name__ == "__main__":

0 commit comments

Comments
 (0)