Skip to content

Commit a5cfc76

Browse files
committed
Edited two-fer test file to clear CI failure.
1 parent cd18bc1 commit a5cfc76

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

test/two-fer/two_fer_test.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,18 @@
1717
from common import Analysis, BaseExerciseTest, BaseFeedback, Exercise, Summary
1818

1919

20-
USES_STRING_FORMAT = """
21-
'''
22-
My Answer to Exercism Python Track Two-Fer Exercise.
23-
'''
24-
def two_fer(name='you'):
25-
'''This function takes a name and prints out one for [name], one for me.
20+
USES_STRING_FORMAT = '''
21+
"""Answer to Exercism Python Track Two-Fer Exercise.
22+
"""
2623
27-
In the absence of a name, it prints you.'''
24+
def two_fer(name="you"):
25+
"""Take a name and print out one for [name], one for me.
26+
27+
In the absence of a name, it print you."""
28+
2829
return "One for {}, one for me.".format(name)
2930
30-
"""
31+
'''
3132

3233
USES_F_STRING = """
3334
'''

0 commit comments

Comments
 (0)