From d41807e6671d516aefbdfe31df333be4a1092022 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Tue, 1 Apr 2014 11:14:31 +0100 Subject: [PATCH] changed smoke test message --- services/web/test/smoke/coffee/SmokeTests.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/test/smoke/coffee/SmokeTests.coffee b/services/web/test/smoke/coffee/SmokeTests.coffee index 683892a496..85cbb895b9 100644 --- a/services/web/test/smoke/coffee/SmokeTests.coffee +++ b/services/web/test/smoke/coffee/SmokeTests.coffee @@ -52,7 +52,7 @@ describe "Opening", -> "X-Forwarded-Proto": "https" }, (error, response, body) -> expect(error, "smoke test: error returned in getting project list").to.not.exist - expect(response.statusCode, "smoke test: response code is not 200 getting project life").to.equal(200) + expect(response.statusCode, "smoke test: response code is not 200 getting project list").to.equal(200) expect(!!body.match("Your Projects - Online LaTeX Editor ShareLaTeX"), "smoke test: body does not have correct title").to.equal true expect(!!body.match("

Projects

"), "smoke test: body does not have correct h1").to.equal true done()