From c81e10ba5783d20546e0c8d9da1f7c1391434912 Mon Sep 17 00:00:00 2001 From: Peter Date: Fri, 10 Feb 2017 15:20:05 -0500 Subject: [PATCH] updated test for console.log instead of console.debug --- test/modules/strings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/modules/strings.js b/test/modules/strings.js index 0cc0d8d4..83f97d82 100644 --- a/test/modules/strings.js +++ b/test/modules/strings.js @@ -22,11 +22,11 @@ test("getInvalidString", function() { equal(OpenSeadragon.getString("Greeting"), "", "Handled unset string key"); - ok(testLog.debug.contains('["Untranslated source string:","Greeting"]'), + ok(testLog.log.contains('["Untranslated source string:","Greeting"]'), 'Invalid string keys are logged'); equal(OpenSeadragon.getString("Errors"), "", "Handled requesting parent key"); - ok(testLog.debug.contains('["Untranslated source string:","Errors"]'), + ok(testLog.log.contains('["Untranslated source string:","Errors"]'), 'Invalid string parent keys are logged'); });