Fix lint errors

This commit is contained in:
Quincy Morgan
2019-03-21 12:04:29 -04:00
parent a2822caf2f
commit b841b0c242
+2 -2
View File
@@ -48,13 +48,13 @@ describe('iD.validations.generic_name', function () {
});
it('ignores feature with a specific name', function() {
createWay({ shop: 'supermarket', name: "Lou's" });
createWay({ shop: 'supermarket', name: 'Lou\'s' });
var issues = validate();
expect(issues).to.have.lengthOf(0);
});
it('ignores feature with a specific name that includes a generic name', function() {
createWay({ shop: 'supermarket', name: "Lou's Store" });
createWay({ shop: 'supermarket', name: 'Lou\'s Store' });
var issues = validate();
expect(issues).to.have.lengthOf(0);
});