summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2015-07-01 20:23:31 +0100
committerJohn McLear <john@mclear.co.uk>2015-07-01 20:23:31 +0100
commitb5686adf928d788279a2be7f6842dec5662368e1 (patch)
treea216827c94b7d31a758da31d7d72a7728c51c0a6 /tests
parent2bf16fe09fe9a6af804666d15ff4704620369d9f (diff)
downloadetherpad-lite-b5686adf928d788279a2be7f6842dec5662368e1.zip
fix font test
Diffstat (limited to 'tests')
-rw-r--r--tests/frontend/specs/font_type.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/frontend/specs/font_type.js b/tests/frontend/specs/font_type.js
index e5c65f2e..d2c7bc63 100644
--- a/tests/frontend/specs/font_type.js
+++ b/tests/frontend/specs/font_type.js
@@ -24,7 +24,7 @@ describe("font select", function(){
//check if font changed to monospace
var fontFamily = inner$("body").css("font-family").toLowerCase();
- var containsStr = fontFamily.indexOf("courier new");
+ var containsStr = fontFamily.indexOf("monospace");
expect(containsStr).to.not.be(-1);
done();