Skip to content

Commit bcf4b03

Browse files
chore(tests): Fix issue with test_file_copy in aws filemanager tests
1 parent 30fbefe commit bcf4b03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_aws_filemanager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ def test_file_move(test_file_create: str, file_manager: FileManager) -> None:
5252
assert upload_path not in file_manager.list("tests/")
5353

5454
def test_file_copy(test_file_create: str, file_manager: FileManager) -> None:
55-
upload_path = "tests/test_aws_filemanager.py"
55+
upload_path = "tests/test.txt"
5656

5757
file_manager.put(test_file_create, upload_path)
58-
file_manager.copy(upload_path, "tests/text2.py")
58+
file_manager.copy(upload_path, "tests/test2.txt")
5959

6060
assert "tests/test2.txt" in file_manager.list("tests/")
6161
assert upload_path in file_manager.list("tests/")

0 commit comments

Comments
 (0)