Avoid flakiness in test_models.
Ensure config values are ordered consistently by using an OrderedDict.
This commit is contained in:
parent
0d78c72018
commit
fc02216754
@ -118,10 +118,10 @@ def configdata_stub(monkeypatch, configdata_init):
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
default={
|
default={
|
||||||
'normal': {
|
'normal': collections.OrderedDict({
|
||||||
'<ctrl+q>': 'quit',
|
('<ctrl+q>', 'quit'),
|
||||||
'ZQ': 'quit'
|
('ZQ', 'quit'),
|
||||||
}
|
})
|
||||||
},
|
},
|
||||||
backends=[],
|
backends=[],
|
||||||
raw_backends=None)),
|
raw_backends=None)),
|
||||||
|
Loading…
Reference in New Issue
Block a user