aboutsummaryrefslogtreecommitdiff
path: root/libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py
diff options
context:
space:
mode:
authorGergely Risko <gergely+context@risko.hu>2009-10-23 10:20:57 +0300
committerGergely Risko <gergely+context@risko.hu>2009-10-23 10:20:57 +0300
commitb47aac3f56a15163132d7722ca7f92f3778a2659 (patch)
treef98ee224d235564d88ccefc00e7f876a95a5d93d /libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py
parentf84161433937b5e5f87185ad7de1f52beecdea5f (diff)
customer test fixes for better error messages when CITA fails
Diffstat (limited to 'libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py')
-rwxr-xr-xlibcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py b/libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py
index f58aa887..cdb6d345 100755
--- a/libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py
+++ b/libcontextsubscriber/customer-tests/asynchronicity/rapidchanges.py
@@ -66,7 +66,9 @@ class RapidChanges(unittest.TestCase):
context_client.resume()
# /.^/ is a regexp that doesn't match anything
context_client.expect(CLTool.STDOUT, ".^", 3, wantdump=False)
- self.assertEqual(context_client.last_output, "test.fast = int:54\n",
+ if context_client.last_output != "test.fast = int:54\n":
+ context_client.printio()
+ self.assert_(False,
"expected a single valueChanged")
provider_fast.close()