summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/services/mail_service.spec.js
diff options
context:
space:
mode:
authorCaio Carrara <ccarrara@thoughtworks.com>2016-06-24 17:15:54 -0300
committerCaio Carrara <ccarrara@thoughtworks.com>2016-06-27 16:39:55 -0300
commit361796f0ff1eb0f450f768749d5c69f5c4f6b1e4 (patch)
tree01e1729ce21feccba9c08fd6e7d8452397d5521a /web-ui/test/spec/services/mail_service.spec.js
parent6042a2b1b93d2f2a89c418971d7e12b5a79b3314 (diff)
Updates the i18next to latest version
See: #727
Diffstat (limited to 'web-ui/test/spec/services/mail_service.spec.js')
-rw-r--r--web-ui/test/spec/services/mail_service.spec.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/web-ui/test/spec/services/mail_service.spec.js b/web-ui/test/spec/services/mail_service.spec.js
index 82714797..2d22d1cf 100644
--- a/web-ui/test/spec/services/mail_service.spec.js
+++ b/web-ui/test/spec/services/mail_service.spec.js
@@ -167,7 +167,7 @@ describeComponent('services/mail_service', function () {
deferred.reject({mailsJSON: {}});
- expect(spyEvent).toHaveBeenTriggeredOnAndWith(document, {message: i18n('Could not delete email')} );
+ expect(spyEvent).toHaveBeenTriggeredOnAndWith(document, {message: i18n.t('Could not delete email')} );
});
it('will try to recover a message when requested to', function() {
@@ -202,11 +202,11 @@ describeComponent('services/mail_service', function () {
spyOn(this.component, 'errorMessage');
this.component.trigger(Pixelated.events.mail.archiveMany, mails);
-
+
deferred.reject({});
- expect(this.component.errorMessage).toHaveBeenCalledWith(i18n('Could not archive emails'));
+ expect(this.component.errorMessage).toHaveBeenCalledWith(i18n.t('Could not archive emails'));
});
-
+
it('make an ajax request to /mails/archive', function() {
this.component.trigger(Pixelated.events.mail.archiveMany,
{checkedMails: [{ident: '43'}, {ident: '44'}]});