diff --git a/CHANGELOG.md b/CHANGELOG.md index abaeca0..e6cc65e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # 1.1.1 - Fixed: Regex for selector-class-pattern now matches lowercase with hyphens correctly +- Fixed: Updated test for url-quotes.js to match updated error text # 1.1.0 diff --git a/__tests__/url-quotes.js b/__tests__/url-quotes.js index 55cce66..0b52717 100644 --- a/__tests__/url-quotes.js +++ b/__tests__/url-quotes.js @@ -21,7 +21,7 @@ test("URL quotes scss", t => { function checkResult(result) { t.equal(result.warnings().length, 1, "flags 1 warning") - t.is(result.warnings()[0].text, "Expected quotes around url argument (function-url-quotes)", "correct warning text") + t.is(result.warnings()[0].text, "Expected quotes (function-url-quotes)", "correct warning text") } })