Skip to content

Commit

Permalink
updated the path
Browse files Browse the repository at this point in the history
  • Loading branch information
Sai-ganesh-0004 committed Oct 9, 2024
1 parent a30ffe2 commit 9f1183f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_fileMetadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def test_insert_new_file():
# Test inserting a new file into the metadata
metadata = FileMetadata([])
file_path = "/path/to/file1.txt"
file_path = "C:\\Users\\2004s\\Desktop\\dummy\\dummy_1.txt"

metadata.insert_file(file_path)

Expand All @@ -14,7 +14,7 @@ def test_insert_new_file():

def test_insert_duplicate_file():
# Test trying to insert a file that is already present
file_path = "/path/to/file2.txt"
file_path = "C:\\Users\\2004s\\Desktop\\dummy\\dummy_2.txt"
metadata = FileMetadata([file_path])

metadata.insert_file(file_path)
Expand All @@ -25,8 +25,8 @@ def test_insert_duplicate_file():

def test_insert_multiple_files():
# Test inserting multiple different files
file_path1 = "/path/to/file3.txt"
file_path2 = "/path/to/file4.txt"
file_path1 = "C:\\Users\\2004s\\Desktop\\dummy\\dummy_3.txt"
file_path2 = "C:\\Users\\2004s\\Desktop\\dummy\\dummy_4.txt"

metadata = FileMetadata([file_path1])

Expand Down

0 comments on commit 9f1183f

Please sign in to comment.