Upgrade to 1.8.1: So long, metamorphs!

This commit is contained in:
Robin Ward
2014-12-01 12:54:59 -05:00
parent b4363de280
commit 39fde5b9fb
15 changed files with 13494 additions and 10660 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");
});