Skip to content

Commit c43ab25

Browse files
committed
Merge pull request gregmalcolm#39 from robotsmack/patch-1
Update python2/koans/about_strings.py
2 parents 7125da0 + 4c88ac6 commit c43ab25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python2/koans/about_strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_use_format_to_interpolate_variables(self):
9999
string = "The values are {0} and {1}".format(value1, value2)
100100
self.assertEqual(__, string)
101101

102-
def test_formatted_values_con_be_shown_in_any_order_or_be_repeated(self):
102+
def test_formatted_values_can_be_shown_in_any_order_or_be_repeated(self):
103103
value1 = 'doh'
104104
value2 = 'DOH'
105105
string = "The values are {1}, {0}, {0} and {1}!".format(value1, value2)

0 commit comments

Comments
 (0)