Skip to content

Commit

Permalink
update test_file_transfer_service.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hpohekar committed May 29, 2024
1 parent 5f5aa6c commit 3b7cfe4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_file_transfer_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ def file_downloaded_to_the_client(file_name: str) -> bool:
-------
Whether file exists.
"""
full_file_name = pathlib.Path(
"/home/runner/.local/share/ansys_fluent_core/examples"
) / os.path.basename(file_name)
full_file_name = pathlib.Path(os.getcwd()) / os.path.basename(file_name)
return full_file_name.is_file()


Expand Down

0 comments on commit 3b7cfe4

Please sign in to comment.