Fix the highway=pedestrian + area=yes test

This commit is contained in:
Bryan Housel
2017-10-31 16:56:55 -04:00
parent 7080661fd4
commit a5d04cc2f1
+1 -1
View File
@@ -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');
});
});