summaryrefslogtreecommitdiff
path: root/web-ui/test
diff options
context:
space:
mode:
authorBruno Wagner and Fabio Pio <bwagner+fpio@thoughtworks.com>2015-01-16 19:40:55 -0200
committerPixpoa pairing <pixpoapairing@pixelated-project.org>2015-01-16 19:40:55 -0200
commit2cbe39d723d429a8aea7601d37da8b694f77a81b (patch)
tree3ec3e1550dd2aa83f5612cee5694c601b0591f18 /web-ui/test
parent578b66f6c1e79661480bca24d785da3d6c1d7911 (diff)
Fixing jshint warnings
Diffstat (limited to 'web-ui/test')
-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>');
});