Skip to content

Commit

Permalink
Fixed unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 2, 2024
1 parent 29d8b65 commit c164fc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def state_file_exists(iteration: int) -> bool:
bucketfs_location = create_bucketfs_location_from_conn_object(query_handler_bfs_connection)
bucketfs_path = f"{BUCKETFS_DIRECTORY}/{TEMPORARY_NAME_PREFIX}/state"
state_file = f"{str(iteration)}.pkl"
return (qubucketfs_location / bucketfs_path / state_file).exists()
return (bucketfs_location / bucketfs_path / state_file).exists()

exa = create_mocked_exa_env(query_handler_bfs_connection)
input_data = (
Expand Down

0 comments on commit c164fc9

Please sign in to comment.