Skip to content

Commit 24117a2

Browse files
committed
removed duplicate one from pytest
1 parent c34d95b commit 24117a2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

pytest.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

0 commit comments

Comments
 (0)