diff --git a/tests/app/objects.js b/tests/app/objects.js index 9865147f4..a120d245b 100644 --- a/tests/app/objects.js +++ b/tests/app/objects.js @@ -9,8 +9,8 @@ define([ 'use!underscore' ], function(_) { name : 'Matt', greeting : 'Hello', sayIt : function() { - return this.name + ', ' + - this.greeting + '!'; + return this.greeting + ', ' + + this.name + '!'; } };