bugfix: testset_shared_variables_mapping should be OrderedDict

This commit is contained in:
debugtalk
2017-07-21 09:35:31 +08:00
parent d90c6165f2
commit 8c58e87fd8

View File

@@ -32,7 +32,7 @@ class Context(object):
if level == "testset":
self.testset_functions_config = {}
self.testset_request_config = {}
self.testset_shared_variables_mapping = {}
self.testset_shared_variables_mapping = OrderedDict()
# testcase config shall inherit from testset configs,
# but can not change testset configs, that's why we use copy.deepcopy here.