Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion koans/about_string_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_use_format_to_interpolate_variables(self):
def test_formatted_values_can_be_shown_in_any_order_or_be_repeated(self):
value1 = 'doh'
value2 = 'DOH'
string = "The values are {1}, {0}, {0} and {1}!".format(value1, value2)
string = "The values are {1}, {0}, {0} and, {1}!".format(value1, value2)
self.assertEqual(__, string)

def test_any_python_expression_may_be_interpolated(self):
Expand Down