1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-25 18:41:39 +03:00

test/coa/_index.js: Fix regex (#1347)

`.` means any character but we want to match the literal `.`
This commit is contained in:
XhmikosR
2021-02-20 16:05:04 +02:00
committed by GitHub
parent 1b2c2625e3
commit df14f37c48

View File

@@ -166,7 +166,7 @@ describe('coa', function() {
]);
} finally {
restoreConsoleLog();
expect(output).to.match(/www.w3.org\/2000\/svg/);
expect(output).to.match(/www\.w3\.org\/2000\/svg/);
}
});