Reverting changes accidentally included from other branch

This commit is contained in:
Max Berkowitz 2024-04-25 23:55:37 -04:00 committed by GitHub
parent 8bf20497d0
commit 917af40c60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -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