diff options
author | Giovane <giovaneliberato@gmail.com> | 2015-10-23 15:36:37 -0200 |
---|---|---|
committer | Giovane <giovaneliberato@gmail.com> | 2015-10-23 15:36:37 -0200 |
commit | 07ed2f21d42e4f4c60b0897d98051b8385de2c04 (patch) | |
tree | 19a260c84be81e57be82eb0886d97caa8bc66fe4 /web-ui/test/spec/mail_view | |
parent | 72e332e2969d4eb36c9cd64336c1f1d89b6185f1 (diff) |
Exclude comma and semicolon on invalid address split
Diffstat (limited to 'web-ui/test/spec/mail_view')
-rw-r--r-- | web-ui/test/spec/mail_view/ui/recipients/recipients_input.spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/test/spec/mail_view/ui/recipients/recipients_input.spec.js b/web-ui/test/spec/mail_view/ui/recipients/recipients_input.spec.js index 1656a83a..29194ee8 100644 --- a/web-ui/test/spec/mail_view/ui/recipients/recipients_input.spec.js +++ b/web-ui/test/spec/mail_view/ui/recipients/recipients_input.spec.js @@ -178,7 +178,7 @@ describeComponent('mail_view/ui/recipients/recipients_input',function () { }); it('displays it as an invalid address token when cannot parse', function() { - this.$node.val('invalid_format email@example.com'); + this.$node.val('invalid_format, email@example.com'); this.$node.trigger(blurEvent); expect(blurEvent.preventDefault).toHaveBeenCalled(); |