From 8c58e87fd8935dff5ac204815b2d2af22f79bef9 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Fri, 21 Jul 2017 09:35:31 +0800 Subject: [PATCH] bugfix: testset_shared_variables_mapping should be OrderedDict --- ate/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ate/context.py b/ate/context.py index b7fbb807..e7efa9a9 100644 --- a/ate/context.py +++ b/ate/context.py @@ -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.