Skip to content

Commit

Permalink
chore: fetch_experiments_table e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrykGala committed Jan 23, 2025
1 parent e54d109 commit 6efea3c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/e2e/alpha/test_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ def test__fetch_experiments_table(sort_direction):
[
r"test/int-value|test/float-value|metrics/step",
AttributeFilter.any(
Attribute("test/int-value", type="int"),
Attribute("test/float-value", type="float"),
Attribute("metrics/step", type="float_series"),
AttributeFilter("test/int-value", type="int"),
AttributeFilter("test/float-value", type="float"),
AttributeFilter("metrics/step", type="float_series"),
),
Attribute("test/int-value", type="int")
| Attribute("test/float-value", type="float")
| Attribute("metrics/step", type="float_series"),
AttributeFilter("test/int-value", type="int")
| AttributeFilter("test/float-value", type="float")
| AttributeFilter("metrics/step", type="float_series"),
],
)
@pytest.mark.parametrize("type_suffix_in_column_names", [True, False])
Expand Down

0 comments on commit 6efea3c

Please sign in to comment.