Skip to content

Commit

Permalink
Handle binary path correctly in CLI E2E test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
banool committed Apr 5, 2023
1 parent ee7650c commit 28df4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/aptos/e2e/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(
self.host_working_directory = host_working_directory
self.image_repo_with_project = image_repo_with_project
self.image_tag = image_tag
self.cli_path = os.path.abspath(cli_path)
self.cli_path = os.path.abspath(cli_path) if cli_path else cli_path
self.test_count = 0
self.api_client = RestClient(f"http://127.0.0.1:8080/v1")

Expand Down

0 comments on commit 28df4c1

Please sign in to comment.