Skip to content

Commit

Permalink
Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasFehring committed Feb 27, 2024
1 parent 8c79e06 commit 7c9eb32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_run_experiments/test_run_sqlite_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ def test_boolean_in_table():
experimenter.execute(run_boolean_experiment, 2)

table = experimenter.get_table()
assert table["given_bool"].dtype == int
assert table["value"].dtype == int
assert table["given_bool"].dtype == "int64"
assert table["value"].dtype == "int64"
assert (table["value"] == [1, 0]).all()
assert (table["given_bool"] == [1, 0]).all()
assert (table["status"] == ["done", "done"]).all()

0 comments on commit 7c9eb32

Please sign in to comment.