From 64ae360dac4f531377d5e29143f1dfa5ced7f4de Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sun, 2 Feb 2020 15:57:17 +0000 Subject: [PATCH] Add verbs to test spec for almost junctions --- test/spec/validations/almost_junction.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/spec/validations/almost_junction.js b/test/spec/validations/almost_junction.js index 5cbdce551..89334b08f 100644 --- a/test/spec/validations/almost_junction.js +++ b/test/spec/validations/almost_junction.js @@ -237,7 +237,7 @@ describe('iD.validations.almost_junction', function () { expect(issues).to.have.lengthOf(0); }); - it('horizontal and vertical road, closer than threshold', function() { + it('flags horizontal and vertical road closer than threshold', function() { horizontalVertialCloserThanThd(); var issues = validate(); expect(issues).to.have.lengthOf(1); @@ -267,7 +267,7 @@ describe('iD.validations.almost_junction', function () { expect(issues).to.have.lengthOf(0); }); - it('horizontal and tilted road, closer than threshold', function() { + it('flags horizontal and tilted road closer than threshold', function() { horizontalTiltedCloserThanThd(); var issues = validate(); expect(issues).to.have.lengthOf(1); @@ -297,19 +297,19 @@ describe('iD.validations.almost_junction', function () { expect(issues).to.have.lengthOf(0); }); - it('horizontal and vertical road, further than threshold', function() { + it('ignores horizontal and vertical road further than threshold', function() { horizontalVertialFurtherThanThd(); var issues = validate(); expect(issues).to.have.lengthOf(0); }); - it('horizontal and vertical road, closer than threshold but with noexit tag', function() { + it('ignores horizontal and vertical road closer than threshold, but with noexit tag', function() { horizontalVertialWithNoExit(); var issues = validate(); expect(issues).to.have.lengthOf(0); }); - it('two horizontal roads, closer than threshold', function() { + it('ignores two horizontal roads closer than threshold', function() { twoHorizontalCloserThanThd(); var issues = validate(); expect(issues).to.have.lengthOf(0);