summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/python/lmi/test/ind.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/lmi/test/ind.py b/src/python/lmi/test/ind.py
index dc4e900..65e5924 100644
--- a/src/python/lmi/test/ind.py
+++ b/src/python/lmi/test/ind.py
@@ -208,8 +208,8 @@ class IndicationTestProbe(object):
self.kwargs = kwargs
def __cmp__(self, other):
- a = self.ind.exported_objects()[0]['IndicationTime'].value
- b = other.ind.exported_objects()[0]['IndicationTime'].value
+ a = self.ind.exported_objects()[0]['IndicationTime']
+ b = other.ind.exported_objects()[0]['IndicationTime']
return cmp(a, b)
def __init__(self):