Skip to content

Commit 5798e1c

Browse files
author
elin
committed
Fix dictionary length assert
1 parent 687596f commit 5798e1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python2/koans/about_dictionaries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def test_creating_dictionaries(self):
1313
empty_dict = dict()
1414
self.assertEqual(dict, type(empty_dict))
1515
self.assertEqual(dict(), empty_dict)
16-
self.assertEqual(__, len(empty_dict))
16+
self.assertEqual(0, len(empty_dict))
1717

1818
def test_dictionary_literals(self):
1919
empty_dict = {}

0 commit comments

Comments
 (0)