Put Ember 1.8.1 + fixes back.

This commit is contained in:
Robin Ward
2014-12-04 08:48:25 -05:00
parent b6bf6669c0
commit e035b07e92
16 changed files with 13464 additions and 10663 deletions

View File

@ -233,7 +233,7 @@ test("storePost", function() {
var postWithoutId = Discourse.Post.create({raw: 'hello world'});
stored = postStream.storePost(postWithoutId);
equal(stored, postWithoutId, "it returns the same post back");
equal(postStream.get('postIdentityMap.length'), 1, "it does not add a new entry into the identity map");
equal(postStream.get('postIdentityMap.size'), 1, "it does not add a new entry into the identity map");
});