From 0a15d67212a581849422fe522b28719accb71ccf Mon Sep 17 00:00:00 2001 From: Alex Loyko Date: Wed, 1 Nov 2017 18:28:11 -0400 Subject: [PATCH] fixed some tests --- test/unit/helper/intersectionsParsing.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/unit/helper/intersectionsParsing.js b/test/unit/helper/intersectionsParsing.js index 171056aa..40ec5a0d 100644 --- a/test/unit/helper/intersectionsParsing.js +++ b/test/unit/helper/intersectionsParsing.js @@ -28,25 +28,25 @@ module.exports.tests.intersectionsParser = function (test) { test('parseIntersections', t => { t.deepEqual(intersectionsParser('73 & e5'), {street1: '73rd', street2: 'East 5th'}, - 'intersectionsParser parsed "73 and e5" correctly!'); + 'intersectionsParser parsed "73 & e5" correctly!'); t.end(); }); test('parseIntersections', t => { t.deepEqual(intersectionsParser('25 & w5'), { street1: '25th', street2: 'West 5th'}, - 'intersectionsParser parsed "25 and w5" correctly!'); + 'intersectionsParser parsed "25 & w5" correctly!'); t.end(); }); test('parseIntersections', t => { t.deepEqual(intersectionsParser('ne26 & nw5'), { street1: 'Northeast 26th', street2: 'Northwest 5th'}, - 'intersectionsParser parsed "26 and nw5" correctly!'); + 'intersectionsParser parsed "ne26 and nw5" correctly!'); t.end(); }); test('parseIntersections', t => { t.deepEqual(intersectionsParser('se26 & sw5'), { street1: 'Southeast 26th', street2: 'Southwest 5th'}, - 'intersectionsParser parsed "26 and nw5" correctly!'); + 'intersectionsParser parsed "se26 & sw5" correctly!'); t.end(); });