summaryrefslogtreecommitdiffstats
path: root/src/python/lmi/test/ind.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/lmi/test/ind.py')
-rw-r--r--src/python/lmi/test/ind.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/python/lmi/test/ind.py b/src/python/lmi/test/ind.py
index d7f67b6..784186c 100644
--- a/src/python/lmi/test/ind.py
+++ b/src/python/lmi/test/ind.py
@@ -92,11 +92,11 @@ class IndicationStreamTestCase(lmi.test.lmibase.LmiTestCase):
es = case['expected_si_stream']
oracle = lmi.test.util.PackedSequence.normalize(es)
result = probe.describe_source_instance_stream()
- msg = ("Expected SourceInstance not delivered:\n"
- "..subscriptions: %r\n"
- "..triggered actions: %r\n"
- "..expected SourceInstances: %r\n"
- "..got: %r\n"
+ msg = ("Expected source instances not delivered:\n"
+ "..subscriptions: %r\n"
+ "..triggered actions: %r\n"
+ "..expected source instances: %r\n"
+ "..got: %r\n"
% (case['subscriptions'], probe.describe_actions(),
oracle, result))
assert result == oracle, msg
@@ -112,11 +112,11 @@ class IndicationStreamTestCase(lmi.test.lmibase.LmiTestCase):
es = case['expected_ind_stream']
oracle = lmi.test.util.PackedSequence.normalize(es)
result = probe.describe_indication_stream()
- msg = ("Expected SourceInstance not delivered:\n"
- "..subscriptions: %r\n"
- "..triggered actions: %r\n"
- "..expected indications: %r\n"
- "..got: %r\n"
+ msg = ("Expected indications not delivered:\n"
+ "..subscriptions: %r\n"
+ "..triggered actions: %r\n"
+ "..expected indications: %r\n"
+ "..got: %r\n"
% (case['subscriptions'], probe.describe_actions(),
oracle, result))
assert result == oracle, msg