From 835ad3e82fe45f8e395e259c9f25195bea4a3fea Mon Sep 17 00:00:00 2001 From: ashwinmaran <amaran@wisc.edu> Date: Wed, 1 Nov 2023 19:08:01 -0500 Subject: [PATCH] lab-p9 q9 typo fix + p9 public_tests fix --- lab-p9/public_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab-p9/public_tests.py b/lab-p9/public_tests.py index 3ce57b3..5fc8e8a 100644 --- a/lab-p9/public_tests.py +++ b/lab-p9/public_tests.py @@ -568,7 +568,7 @@ def simple_compare(expected, actual, complete_msg=True): new_msg = print_message(expected, actual, complete_msg) if len(expected) != len(actual): return new_msg - val = simple_compare(list(expected.keys()), list(actual.keys())) + val = list_compare_unordered(list(expected.keys()), list(actual.keys())) if val != PASS: return new_msg for key in expected: -- GitLab