From 81174fa5807d3b9e5ac773e7713429b525d600f1 Mon Sep 17 00:00:00 2001 From: Umair Khan Date: Fri, 30 Sep 2016 17:20:01 +0500 Subject: [PATCH] Change message contents to differentiate messages. I have a hunch that the messages sent from different files are interfering with each other as well. This commit will make it clear if indeed this is the case. --- frontend_tests/casper_tests/02-site.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend_tests/casper_tests/02-site.js b/frontend_tests/casper_tests/02-site.js index 5fe9fb2a6c..aa7a6fd1f5 100644 --- a/frontend_tests/casper_tests/02-site.js +++ b/frontend_tests/casper_tests/02-site.js @@ -38,13 +38,13 @@ casper.then(function () { common.then_send_many([ { stream: 'Verona', subject: 'frontend test', - content: 'test message A' }, + content: 'test verona A' }, { stream: 'Verona', subject: 'frontend test', - content: 'test message B' }, + content: 'test verona B' }, { stream: 'Verona', subject: 'other subject', - content: 'test message C' }, + content: 'test verona C' }, { recipient: 'cordelia@zulip.com, hamlet@zulip.com', content: 'personal A' }, @@ -62,9 +62,9 @@ common.wait_for_receive(function () { 'You and Cordelia Lear, King Hamlet', 'You and Cordelia Lear' ], [ - '

test message A

', - '

test message B

', - '

test message C

', + '

test verona A

', + '

test verona B

', + '

test verona C

', '

personal A

', '

personal B

', '

personal C

' @@ -75,7 +75,7 @@ common.wait_for_receive(function () { common.then_send_many([ { stream: 'Verona', subject: 'frontend test', - content: 'test message D' }, + content: 'test verona D' }, { recipient: 'cordelia@zulip.com, hamlet@zulip.com', content: 'personal D' }