commit | 3545ca126d4a526040460f274c91d9135dd361ee | [log] [tgz] |
---|---|---|
author | Scott Baker <smbaker@gmail.com> | Thu Apr 23 17:29:07 2020 -0700 |
committer | Scott Baker <smbaker@gmail.com> | Fri Apr 24 13:19:20 2020 -0700 |
tree | b9a48a5f0e77232f0113b004565b8c4531bffac4 | |
parent | 5ce76d4088c8ec2bb855fb42a4b35860d116d6f1 [diff] [blame] |
SEBA-960 fix xos robot tests broken by python upgrade Change-Id: If49d880f32ab6ba323ca8e83ed504b4a351df196
diff --git a/cord-robot/CORDRobot/CORDDictUtils.py b/cord-robot/CORDRobot/CORDDictUtils.py index ea13212..4d48d16 100644 --- a/cord-robot/CORDRobot/CORDDictUtils.py +++ b/cord-robot/CORDRobot/CORDDictUtils.py
@@ -101,7 +101,7 @@ for dict1 in list1: if dict1 == {}: continue - key = dict1.keys()[0] + key = list(dict1.keys())[0] value = dict1[key] dict2 = self.getDictFromListOfDict(list2, key, value) if dict2 == {}: