diff --git a/app/async.js b/app/async.js index 9ccbc5350..2cf0dd8f8 100644 --- a/app/async.js +++ b/app/async.js @@ -6,6 +6,6 @@ exports.asyncAnswers = { }, manipulateRemoteData : function(url) { - + // note that's important to output resulting names in alphabet order } }; diff --git a/tests/app/async.js b/tests/app/async.js index aaca7bc1d..8905cdea9 100644 --- a/tests/app/async.js +++ b/tests/app/async.js @@ -33,7 +33,7 @@ describe('async behavior', function() { asyncAnswers.manipulateRemoteData(url).then(function(result) { expect(result).to.have.length(5); - expect(result.join(' ')).to.eql('Adam Alex Matt Paul Rebecca'); + expect(result.join(' ')).to.eql('Matt Rebecca Paul Alex Adam'); done(); }); });