aboutsummaryrefslogtreecommitdiffstats
path: root/test/ApiTest.js
diff options
context:
space:
mode:
authorMisko Hevery2010-04-12 16:24:28 -0700
committerMisko Hevery2010-04-12 16:24:28 -0700
commit713307b6505a56ca7b5423b36e297070d756ff15 (patch)
tree9c229723ee42350e85fa376911e5f3501e6e3762 /test/ApiTest.js
parent841640e540b5e054a97e650bdd7b560680e94840 (diff)
downloadangular.js-713307b6505a56ca7b5423b36e297070d756ff15.tar.bz2
added ng-eval-order attribute
Diffstat (limited to 'test/ApiTest.js')
-rw-r--r--test/ApiTest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ApiTest.js b/test/ApiTest.js
index 5d85987b..4035cdbb 100644
--- a/test/ApiTest.js
+++ b/test/ApiTest.js
@@ -252,5 +252,5 @@ ApiTest.prototype.testStringFromUTC = function(){
};
ApiTest.prototype.testObjectShouldHaveExtend = function(){
- assertEquals(angular.Object.extend, extend);
+ assertEquals({a:1, b:2}, angular.Object.extend({a:1}, {b:2}));
};