From a5d04cc2f13863a1a4a68781400ca66acb83e787 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 31 Oct 2017 16:56:55 -0400 Subject: [PATCH] Fix the highway=pedestrian + area=yes test --- test/spec/presets/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/presets/index.js b/test/spec/presets/index.js index fbe9ceb8d..9178a4519 100644 --- a/test/spec/presets/index.js +++ b/test/spec/presets/index.js @@ -180,7 +180,7 @@ describe('iD.presetIndex', function() { var presets = iD.Context().presets(), way = iD.Way({ tags: { area: 'yes', highway: 'pedestrian' }}), graph = iD.Graph([way]); - expect(presets.match(way, graph).id).to.eql('highway/pedestrian'); + expect(presets.match(way, graph).id).to.eql('highway/pedestrian_area'); }); });