From d85da08cfeb9c53568638cf6d86c21780192b8ee Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 10 Dec 2014 00:11:09 -0500 Subject: [PATCH] fix "inherits entities from base prototypally" test --- test/spec/core/graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/core/graph.js b/test/spec/core/graph.js index 0559c6df1..db8934631 100644 --- a/test/spec/core/graph.js +++ b/test/spec/core/graph.js @@ -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'); });