Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit edbb6e7

Browse files
committedMar 16, 2023
closes #172
1 parent a614093 commit edbb6e7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎Data structures/Dictionaries/tests/test_task.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ def test_out_num(self):
1717
def test_dict(self):
1818
self.assertTrue("Jared" in phone_book.keys(), msg="You didn't add Jared.")
1919
self.assertTrue(phone_book['Jared'] == 570, msg="Jared's number should be 570.")
20+
self.assertTrue(phone_book['Jill'] == 345, msg="Jill's number should be 345.")
21+
self.assertTrue(phone_book['Jane'] == 234, msg="Jane's number should be 234.")
2022
self.assertTrue('Gerard' not in phone_book.keys(), msg="You didn't remove Gerard.")
2123
self.assertEqual({'Jane': 234, 'Jill': 345, 'Jared': 570}, phone_book,
2224
msg="Your resulting dictionary seems to be off.")

0 commit comments

Comments
 (0)