Skip to content

Commit

Permalink
fix unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyash2106 committed Jun 6, 2024
1 parent 4a4994e commit 27ed2c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unittests/test_data_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ def test_get_all_file_paths(self):
# Create some nested directories and files
os.makedirs(os.path.join(tmp_dir, "subdir1"))
os.makedirs(os.path.join(tmp_dir, "subdir2"))
file1 = os.path.join(tmp_dir, "file1.txt")
file2 = os.path.join(tmp_dir, "subdir1", "file2.txt")
file3 = os.path.join(tmp_dir, "subdir2", "file3.txt")
file1 = os.path.join(tmp_dir, "file1.pdf")
file2 = os.path.join(tmp_dir, "subdir1", "file2.pdf")
file3 = os.path.join(tmp_dir, "subdir2", "file3.pdf")
with open(file1, "w") as f:
f.write("Test file 1")
with open(file2, "w") as f:
Expand Down

0 comments on commit 27ed2c8

Please sign in to comment.