From 917af40c60c5891cf9a31e6ad1de08249a3e726a Mon Sep 17 00:00:00 2001 From: Max Berkowitz Date: Thu, 25 Apr 2024 23:55:37 -0400 Subject: [PATCH] Reverting changes accidentally included from other branch --- testing/test_assertion.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/testing/test_assertion.py b/testing/test_assertion.py index 2e099ec19..ef4e36644 100644 --- a/testing/test_assertion.py +++ b/testing/test_assertion.py @@ -678,13 +678,6 @@ class TestAssert_reprcompare: assert expl is not None assert len(expl) > 1 - def test_dict_truncate(self) -> None: - dict1 = {"asdf": [1, 1, 1, 1, 1, 1, 1, 1]} - dict2 = {"asdf": [1, 1, 1, 1, 1, 1, 1, 2]} - expl = callequal(dict1, dict2) - print(expl) - assert False - def test_dict_omitting(self) -> None: lines = callequal({"a": 0, "b": 1}, {"a": 1, "b": 1}) assert lines is not None