From bd44cec2e868472dd8a130a7e41096f431bd3f9f Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 16:48:27 +0100 Subject: [PATCH] Fix broken testcase! --- test/spec/actions/disconnect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/actions/disconnect.js b/test/spec/actions/disconnect.js index e37dc178f..703ffef88 100644 --- a/test/spec/actions/disconnect.js +++ b/test/spec/actions/disconnect.js @@ -200,7 +200,7 @@ describe('iD.actionDisconnect', function () { iD.osmNode({id: 'c'}), iD.osmNode({id: 'd'}), iD.osmWay({id: '-', nodes: ['a', 'b']}), - iD.osmWay({id: '=', nodes: ['e', 'c', 'd', 'e']}) + iD.osmWay({id: '=', nodes: ['b', 'c', 'd', 'b']}) ]); graph = iD.actionDisconnect('b', 'e').limitWays(['='])(graph);