File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,20 @@ def test_read_event_type(new_nick: str) -> None:
78
78
event_type = aput .read_event_type (nickname = new_nick )
79
79
print (event_type )
80
80
# --------------------------------------------------
81
- @pytest .mark .parametrize ('new_nick ' , Data .l_new_nick )
82
- def test_new_from_old (new_nick : str ) -> None :
81
+ @pytest .mark .parametrize ('old_nick ' , Data .l_old_nick )
82
+ def test_new_from_old (old_nick : str ) -> None :
83
83
'''
84
- Will test function taking returning new nickname style
84
+ Will test function returning new nickname style
85
85
from old nickname style
86
86
'''
87
- old_nick = aput .new_from_old_nick (new_nick )
87
+ old_nick = aput .new_from_old_nick (old_nick )
88
+ print (old_nick )
89
+ # --------------------------------------------------
90
+ @pytest .mark .parametrize ('new_nick' , Data .l_new_nick )
91
+ def test_old_from_new (new_nick : str ) -> None :
92
+ '''
93
+ Will test function returning old nickname style
94
+ from new nickname style
95
+ '''
96
+ old_nick = aput .old_from_new_nick (new_nick )
97
+ print (old_nick )
You can’t perform that action at this time.
0 commit comments