diff options
author | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2015-01-08 19:28:24 -0200 |
---|---|---|
committer | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2015-01-08 19:28:24 -0200 |
commit | a0677e5c1b913d8229fe8a957ed51328d33921fb (patch) | |
tree | cee85d26070f3068b4d11acad0ddb1eebeffa121 /web-ui/test/spec | |
parent | 137ed70c956872616c4c6863afb79410866bdc80 (diff) |
#157 fix typo in tests
Diffstat (limited to 'web-ui/test/spec')
-rw-r--r-- | web-ui/test/spec/helpers/view_helper.spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/test/spec/helpers/view_helper.spec.js b/web-ui/test/spec/helpers/view_helper.spec.js index 3399baa8..caaf16cf 100644 --- a/web-ui/test/spec/helpers/view_helper.spec.js +++ b/web-ui/test/spec/helpers/view_helper.spec.js @@ -58,7 +58,7 @@ define(['helpers/view_helper'], function (viewHelper) { it('formats the body of a plain text email', function () { var formatedMail = $('<div></div>'); formatedMail.html(viewHelper.formatMailBody(testData.parsedMail.simpleTextPlain)); - expect(formatedMail).toContainHtml('<p>HNello Everyone</p>'); + expect(formatedMail).toContainHtml('<p>Hello Everyone</p>'); }); it('move caret to the end of text after 1ms', function () { |