From 48e96731e9c48f770a3ee027c020a0113f703592 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 17 Mar 2014 14:23:12 +0000 Subject: [PATCH] allow hostnames with dash ("-"), e.g mkc-cproxy.indexdata.com --- test/spec/mkws-pazpar2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 2b1f250..76f4834 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -367,7 +367,7 @@ describe("Show record", function () { debug("URL: " + url.attr('href') + " text: " + url.text()); expect(url.attr('href')).not.toBe(null); - expect(url.attr('href')).toMatch(/^https?:\/\/[a-z0-9]+\.[0-9a-z].*\//i); + expect(url.attr('href')).toMatch(/^https?:\/\/[a-z0-9\-]+\.[0-9a-z].*\//i); expect(url.text()).not.toBe(""); } }); -- 1.7.10.4