summaryrefslogtreecommitdiff
path: root/web-ui/test/spec
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/spec')
-rw-r--r--web-ui/test/spec/helpers/view_helper.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/test/spec/helpers/view_helper.spec.js b/web-ui/test/spec/helpers/view_helper.spec.js
index b975dcd9..d84cb4ac 100644
--- a/web-ui/test/spec/helpers/view_helper.spec.js
+++ b/web-ui/test/spec/helpers/view_helper.spec.js
@@ -63,9 +63,9 @@ define(['helpers/view_helper'], function (viewHelper) {
it('escape html in plain text body', function () {
var formattedMail = $('<div></div>');
var mail = testData.parsedMail.simpleTextPlain;
- mail.textPlainBody = '<font color="red">This is some text!</font>'
+ mail.textPlainBody = '<font color="red">This is some text!</font>';
formattedMail.html(viewHelper.formatMailBody(mail));
- expect(formattedMail.text()).toBe('<font color="red">This is some text!</font>')
+ expect(formattedMail.text()).toBe('<font color="red">This is some text!</font>');
});