Skip to content

Commit

Permalink
Add antti to the list of padawans.
Browse files Browse the repository at this point in the history
- Initialize skill test list for R4Q2
- Add antti to the list of padawans
  • Loading branch information
akalliokoski committed Apr 27, 2023
1 parent 77856f0 commit d093c79
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/syft/tests/trials/skill_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ def get_padawans(cohort: str) -> Dict[str, str]:
"Vani": "PASSED",
"Hithem": "PASSED",
},
"R4Q2": {
"skywalker": "PASSED",
"antti": "PASSED",
},
}
return data[cohort]

Expand Down Expand Up @@ -82,3 +86,8 @@ def test_trial_of_skill() -> None:
assert get_padawans("R3Q1")["Hithem"] == "PASSED"

assert len(get_padawans("R3Q1")) > 1

assert get_padawans("R4Q2")["skywalker"] == "PASSED"
assert get_padawans("R4Q2")["antti"] == "PASSED"

assert len(get_padawans("R4Q2")) > 1

0 comments on commit d093c79

Please sign in to comment.