From 7d082d4839005423f63ed7d20658eeb07cfd9208 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Tue, 17 Dec 2013 10:55:24 +0000 Subject: [PATCH] Fix commit which broke our tests suite. commit 1cb6ac748b3e920577baacfdd39d0373ea6767e1 Author: Mike Taylor Date: Mon Dec 16 15:57:57 2013 +0000 Eliminate temporary variable. --- test/spec/mkws-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/mkws-config.js b/test/spec/mkws-config.js index 01942e8..1c530fa 100644 --- a/test/spec/mkws-config.js +++ b/test/spec/mkws-config.js @@ -27,7 +27,7 @@ describe("Check mkws_config object", function () { describe("Check pazpar2 config", function () { it("pazpar2path is a path or an full URL", function () { - expect(mkws.pazpar2path).toMatch(/^(\/|http:\/\/)/) + expect(mkws_config.pazpar2_url).toMatch(/^(\/|http:\/\/)/) }); it("usesessions false", function () { -- 1.7.10.4