diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2018-11-10 09:45:27 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-12-18 07:49:48 +0100 |
commit | 572f35f92e9eeffd7f6e48b6de1e3623848a39cc (patch) | |
tree | 453149c4090811a31f8fa86cac770e816f8b6858 /pylint/test/unittest_utils.py | |
parent | bce332ab43b6d7cce30bc833d2d3d1e1cd6f1054 (diff) | |
download | pylint-git-572f35f92e9eeffd7f6e48b6de1e3623848a39cc.tar.gz |
Refactor - Made the error message predictable
When refactoring MsgStore we don't want the test to break if two
conflicting symbol or msgid are inverted. So we sort them, in order
for the error message to stay stable.
Diffstat (limited to 'pylint/test/unittest_utils.py')
-rw-r--r-- | pylint/test/unittest_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/test/unittest_utils.py b/pylint/test/unittest_utils.py index b1cefead5..f295d9354 100644 --- a/pylint/test/unittest_utils.py +++ b/pylint/test/unittest_utils.py @@ -123,7 +123,7 @@ def store(): ), "W1234": ("message one", "msg-symbol-one", "msg description"), }, - "Message id 'W1234' cannot have both 'old-symbol' and 'msg-symbol-one' as symbolic name.", + "Message id 'W1234' cannot have both 'msg-symbol-one' and 'old-symbol' as symbolic name.", ), ( { |