Skip to content

Commit

Permalink
test/coa/_index.js: Fix regex (svg#1347)
Browse files Browse the repository at this point in the history
`.` means any character but we want to match the literal `.`
  • Loading branch information
XhmikosR authored Feb 20, 2021
1 parent 1b2c262 commit df14f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/coa/_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/);
}
});

Expand Down

0 comments on commit df14f37

Please sign in to comment.