diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-07-09 08:12:18 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-07-09 09:04:51 +0200 |
commit | 9f36efbf73bf43d2f3ab1be955ecb4ffb1725708 (patch) | |
tree | dbd959e4cbb376066a175e7b441a2744d0b1d384 /tests | |
parent | e54cf5cb06bed48e2b68b80c1f04c276cb3f042d (diff) | |
download | immutables-9f36efbf73bf43d2f3ab1be955ecb4ffb1725708.tar.gz immutables-9f36efbf73bf43d2f3ab1be955ecb4ffb1725708.zip |
ensure uniform quoting in mypy test messages
Gbp-Pq: Name 0002-ensure-uniform-quoting-in-mypy-test-messages.patch
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_mypy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_mypy.py b/tests/test_mypy.py index fcdc11c..12f19b3 100644 --- a/tests/test_mypy.py +++ b/tests/test_mypy.py @@ -14,6 +14,7 @@ else: # and at no other time. def renormalize_error_messages(messages): messages = [x for x in messages if not x.endswith(' defined here')] + messages = [x.replace('\'', '"') for x in messages] return normalize_error_messages(messages) mypy.test.testcmdline.normalize_error_messages = renormalize_error_messages |