Skip to content

Commit bd4cb0a

Browse files
authored
Update test.py
1 parent 6a191a9 commit bd4cb0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/12.6-Transformers/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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')
1212
def 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)')
2727
def test_function_value2(app):
2828
try:
2929
incoming_ajax_data = [

0 commit comments

Comments
 (0)