Fix some lint errors from previous commit.

This commit is contained in:
Ian Gulliver
2015-10-15 21:55:55 +02:00
parent a59f7f97f3
commit f77007e047
2 changed files with 14 additions and 8 deletions

View File

@@ -660,7 +660,8 @@ QUnit.asyncTest('Local subject -- Message round trip', function(assert) {
var cosmo = new Cosmopolite(null, randstring());
cosmo.addEventListener('message', function(e) {
assert.equal(e.detail['subject']['name'], subject['name'], 'subject matches');
assert.equal(e.detail['subject']['name'], subject['name'],
'subject matches');
assert.ok(e.detail['subject']['local'], 'subject still local');
assert.equal(e.detail['message'], message, 'message matches');
cosmo.shutdown();