Skip to content

Commit

Permalink
More explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsmkn committed May 27, 2024
1 parent 20f13c3 commit 547cb57
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions app/tests/evaluation_tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_calculate_ranks(
(
Phase.ABSOLUTE,
[
b_default := {
{
"path": "b",
"title": "b",
"order": Phase.DESCENDING,
Expand All @@ -184,7 +184,9 @@ def test_calculate_ranks(
Phase.ABSOLUTE,
[
{
**b_default,
"path": "b",
"title": "b",
"order": Phase.DESCENDING,
"exclude_from_ranking": True,
}
],
Expand All @@ -195,7 +197,9 @@ def test_calculate_ranks(
Phase.MEDIAN,
[
{
**b_default,
"path": "b",
"title": "b",
"order": Phase.DESCENDING,
"exclude_from_ranking": False,
}
],
Expand All @@ -206,7 +210,9 @@ def test_calculate_ranks(
Phase.MEDIAN,
[
{
**b_default,
"path": "b",
"title": "b",
"order": Phase.DESCENDING,
"exclude_from_ranking": True,
}
],
Expand All @@ -217,7 +223,9 @@ def test_calculate_ranks(
Phase.MEAN,
[
{
**b_default,
"path": "b",
"title": "b",
"order": Phase.DESCENDING,
"exclude_from_ranking": False,
}
],
Expand All @@ -228,7 +236,9 @@ def test_calculate_ranks(
Phase.MEAN,
[
{
**b_default,
"path": "b",
"title": "b",
"order": Phase.DESCENDING,
"exclude_from_ranking": True,
}
],
Expand Down

0 comments on commit 547cb57

Please sign in to comment.