Really avoid flakiness in test_models.

Ensure the OrderedDict is actually ordered consistently.
This commit is contained in:
Ryan Roden-Corrent 2017-09-05 07:52:42 -04:00
parent 3726502017
commit a5ecb75fcd

View File

@ -118,10 +118,10 @@ def configdata_stub(monkeypatch, configdata_init):
),
),
default={
'normal': collections.OrderedDict({
'normal': collections.OrderedDict([
('<ctrl+q>', 'quit'),
('ZQ', 'quit'),
})
])
},
backends=[],
raw_backends=None)),