File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/12.6-Transformers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ def test_variable_exists(app):
88 except AttributeError :
99 raise AttributeError ('The function "data_transformer" should exists' )
1010
11- @pytest .mark .it ('The function named data_transformer should return the correct value ' )
11+ @pytest .mark .it ('The function named data_transformer should return the correct output ' )
1212def test_function_value1 (app ):
1313 try :
1414 incoming_ajax_data = [
@@ -23,7 +23,7 @@ def test_function_value1(app):
2323 except AttributeError :
2424 raise AttributeError ("The variable 'transformed_data' should have the correct value" )
2525
26- @pytest .mark .it ('The function named data_transformer should return the correct value (Testing with a different list)' )
26+ @pytest .mark .it ('The function named data_transformer should return the correct output (Testing with a different list)' )
2727def test_function_value2 (app ):
2828 try :
2929 incoming_ajax_data = [
You can’t perform that action at this time.
0 commit comments