File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
tests/regression/regression_tests/fobt_regression_tests Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,5 @@ markers =
5555 spine_retrieval_search_tests: tests that are part of subject spine retrieval demographics
5656 hub_user_tests: tests that are part of the hub user test suite
5757 fobt_regression_tests: tests that are part of the fobt regression test suite
58- survelliance_regression_tests: tests that are part of the survelliance regression test suite
5958 lynch_self_referral_tests: tests that are part of the lynch self referral test suite
6059 surveillance_regression_tests: tests that are part of the surveillance regression test suite
Original file line number Diff line number Diff line change 1+ class Employee :
2+ def __init__ (self , name , position ):
3+ self .name = name
4+ self .position = position
5+
6+ def promote (self , new_position ):
7+ self .position = new_position
You can’t perform that action at this time.
0 commit comments