Switch the selftest dialogue to a normal dict
authorJeremy Stanley <fungi@yuggoth.org>
Sun, 1 Nov 2020 16:52:07 +0000 (16:52 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sun, 1 Nov 2020 16:54:51 +0000 (16:54 +0000)
commit94eb9e7a09b1edf0d4c600c4f3c1cc4e709af1c9
tree9e87c8ec9553dd8b714cf76e0d22940ae5c39f4f
parenta75fa6326ef030ad1dbbe25171c75180f93e657c
Switch the selftest dialogue to a normal dict

Starting with Python 3.6, dicts are implicitly ordered (albeit as a
side effect in 3.6, 3.7 is consistent with 3.6 and guarantees
ordering in interpreter versions from that point on). We no longer
need to use collections.OrderedDict for the selftest dialogue as a
result, so use a regular dict there now to simplify it.
mudpy/tests/selftest.py