From df14f37c4884df8a602f638e34e18760432d7028 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 20 Feb 2021 16:05:04 +0200 Subject: [PATCH] test/coa/_index.js: Fix regex (#1347) `.` means any character but we want to match the literal `.` --- test/coa/_index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/coa/_index.js b/test/coa/_index.js index 8d2c01bc..e506964c 100644 --- a/test/coa/_index.js +++ b/test/coa/_index.js @@ -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/); } });