From 4c37907d8f16ac6a71ee62cc4a6b252e6bd293eb Mon Sep 17 00:00:00 2001 From: atanasovg Date: Wed, 30 Sep 2015 18:03:12 +0300 Subject: [PATCH] Fix failing test. --- apps/tests/ui/web-view/web-view-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tests/ui/web-view/web-view-tests.ts b/apps/tests/ui/web-view/web-view-tests.ts index 6ef3890df..598922ebd 100644 --- a/apps/tests/ui/web-view/web-view-tests.ts +++ b/apps/tests/ui/web-view/web-view-tests.ts @@ -240,7 +240,7 @@ export var testLoadUpperCaseSrc = function () { helper.goBack(); if (testFinished) { - TKUnit.assert(actualSrc === targetSrc, "args.url should equal '" + targetSrc + "'"); + TKUnit.assert(actualSrc === targetSrc.toLowerCase(), "args.url should equal '" + targetSrc.toLowerCase() + "'"); TKUnit.assert(actualError === undefined, actualError); } else {