Skip to content

Commit

Permalink
summary_csv test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TarekAbouChakra committed Nov 27, 2023
1 parent 14b87ae commit 132454f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_metahyper/test_locking.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from more_itertools import first_true


def launch_example_processes(n_workers: int=3) -> list:
def launch_example_processes(n_workers: int = 3) -> list:
processes = []
for _ in range(n_workers):
processes.append(
Expand Down Expand Up @@ -90,7 +90,7 @@ def test_summary_csv():

config_data_df = pd.read_csv(summary_dir / "config_data.csv")
assert config_data_df.shape[0] == 15
assert (config_data_df["Status"] == "Complete").all()
assert (config_data_df["status"] == "complete").all()
except Exception as e:
raise e
finally:
Expand Down

0 comments on commit 132454f

Please sign in to comment.