fix "inherits entities from base prototypally" test

This commit is contained in:
Bryan Housel
2014-12-10 00:11:09 -05:00
parent eff18cb257
commit d85da08cfe

View File

@@ -106,7 +106,7 @@ describe('iD.Graph', function() {
it("inherits entities from base prototypally", function () {
var graph = iD.Graph();
graph.rebase([iD.Node()], [graph]);
graph.rebase([iD.Node({id: 'n'})], [graph]);
expect(graph.entities).not.to.have.ownProperty('n');
});