From 0d1abaec0db522318abfa991dd95b78f9ced6fed Mon Sep 17 00:00:00 2001 From: Xavier Michelon Date: Thu, 30 Sep 2021 15:57:03 +0200 Subject: [PATCH] Other: fixed new copy test feature. --- test/features/bridge/imap/message/copy.feature | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/features/bridge/imap/message/copy.feature b/test/features/bridge/imap/message/copy.feature index d10eee2a..a4c50ed4 100644 --- a/test/features/bridge/imap/message/copy.feature +++ b/test/features/bridge/imap/message/copy.feature @@ -48,20 +48,21 @@ Feature: IMAP copy messages | from | to | subject | body | read | deleted | | john.doe@mail.com | user@pm.me | foo | hello | true | false | - Scenario: Copy message from All mail creates a duplicate + Scenario: Copy message from All mail moves from the original location Given there is IMAP client selected in "All Mail" When IMAP client copies message seq "1" to "Folders/mbox" Then IMAP response is "OK" And mailbox "INBOX" for "user" has 2 messages And mailbox "INBOX" for "user" has messages | from | to | subject | body | read | deleted | - | john.doe@mail.com | user@pm.me | foo | hello | true | false | | jane.doe@mail.com | name@pm.me | bar | world | false | true | + | john.doe@mail.com | user@pm.me | response | hello | true | false | And mailbox "All Mail" for "user" has 3 messages And mailbox "All Mail" for "user" has messages | from | to | subject | body | read | deleted | | john.doe@mail.com | user@pm.me | foo | hello | true | false | | jane.doe@mail.com | name@pm.me | bar | world | false | false | + | john.doe@mail.com | user@pm.me | response | hello | true | false | And mailbox "Folders/mbox" for "user" has 1 messages And mailbox "Folders/mbox" for "user" has messages | from | to | subject | body | read | deleted |