From 2f9876ad74ea3532dbbf3384b2df73a7199a7454 Mon Sep 17 00:00:00 2001 From: Michal Horejsek Date: Tue, 10 Nov 2020 12:36:06 +0100 Subject: [PATCH] Remove unnecessary semicolon --- test/api_checks_test.go | 2 +- test/features/bridge/smtp/send/bcc.feature | 4 ++-- test/features/bridge/smtp/send/html.feature | 8 ++++---- test/features/bridge/smtp/send/html_att.feature | 4 ++-- test/features/bridge/smtp/send/plain.feature | 14 +++++++------- test/features/bridge/smtp/send/plain_att.feature | 6 +++--- test/features/bridge/smtp/send/send_append.feature | 2 +- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/test/api_checks_test.go b/test/api_checks_test.go index d052932f..231da38c 100644 --- a/test/api_checks_test.go +++ b/test/api_checks_test.go @@ -28,7 +28,7 @@ import ( func APIChecksFeatureContext(s *godog.Suite) { s.Step(`^API endpoint "([^"]*)" is called with:$`, apiIsCalledWith) - s.Step(`^message is sent with API call:$`, messageIsSentWithAPICall) + s.Step(`^message is sent with API call$`, messageIsSentWithAPICall) s.Step(`^API mailbox "([^"]*)" for "([^"]*)" has messages$`, apiMailboxForUserHasMessages) s.Step(`^API mailbox "([^"]*)" for address "([^"]*)" of "([^"]*)" has messages$`, apiMailboxForAddressOfUserHasMessages) } diff --git a/test/features/bridge/smtp/send/bcc.feature b/test/features/bridge/smtp/send/bcc.feature index ce7348ec..683804f8 100644 --- a/test/features/bridge/smtp/send/bcc.feature +++ b/test/features/bridge/smtp/send/bcc.feature @@ -17,7 +17,7 @@ Feature: SMTP with bcc And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | bridgetest@protonmail.com | hello | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -52,7 +52,7 @@ Feature: SMTP with bcc And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | | hello | - And message is sent with API call: + And message is sent with API call """ { "Message": { diff --git a/test/features/bridge/smtp/send/html.feature b/test/features/bridge/smtp/send/html.feature index a14a341f..4524a742 100644 --- a/test/features/bridge/smtp/send/html.feature +++ b/test/features/bridge/smtp/send/html.feature @@ -21,7 +21,7 @@ Feature: SMTP sending of HTML messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | HTML text external | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -96,7 +96,7 @@ Feature: SMTP sending of HTML messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Html Inline External | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -185,7 +185,7 @@ Feature: SMTP sending of HTML messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | bridgetest@protonmail.com | Html Inline Alternative Internal | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -274,7 +274,7 @@ Feature: SMTP sending of HTML messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Html Inline Alternative External | - And message is sent with API call: + And message is sent with API call """ { "Message": { diff --git a/test/features/bridge/smtp/send/html_att.feature b/test/features/bridge/smtp/send/html_att.feature index 7111154b..005d0302 100644 --- a/test/features/bridge/smtp/send/html_att.feature +++ b/test/features/bridge/smtp/send/html_att.feature @@ -41,7 +41,7 @@ Feature: SMTP sending of HTML messages with attachments And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | bridgetest@protonmail.com | HTML with attachment internal | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -100,7 +100,7 @@ Feature: SMTP sending of HTML messages with attachments And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | HTML with attachment external PGP | - And message is sent with API call: + And message is sent with API call """ { "Message": { diff --git a/test/features/bridge/smtp/send/plain.feature b/test/features/bridge/smtp/send/plain.feature index 5f8bfcf6..f34e4d8f 100644 --- a/test/features/bridge/smtp/send/plain.feature +++ b/test/features/bridge/smtp/send/plain.feature @@ -16,7 +16,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | bridgetest@protonmail.com | | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -50,7 +50,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -87,7 +87,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | bridgetest@protonmail.com | Plain text internal | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -124,7 +124,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Plain text external | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -161,7 +161,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Plain text no charset external | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -201,7 +201,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Plain text no charset external | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -236,7 +236,7 @@ Feature: SMTP sending of plain messages And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Plain, no charset, no content, external | - And message is sent with API call: + And message is sent with API call """ { "Message": { diff --git a/test/features/bridge/smtp/send/plain_att.feature b/test/features/bridge/smtp/send/plain_att.feature index e0c21fda..56462a2d 100644 --- a/test/features/bridge/smtp/send/plain_att.feature +++ b/test/features/bridge/smtp/send/plain_att.feature @@ -41,7 +41,7 @@ Feature: SMTP sending of plain messages with attachments And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | bridgetest@protonmail.com | Plain with attachment | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -100,7 +100,7 @@ Feature: SMTP sending of plain messages with attachments And mailbox "Sent" for "user" has messages | from | to | subject | | [userAddress] | pm.bridge.qa@gmail.com | Plain with attachment external | - And message is sent with API call: + And message is sent with API call """ { "Message": { @@ -160,7 +160,7 @@ Feature: SMTP sending of plain messages with attachments And mailbox "Sent" for "user" has messages | from | to | cc | subject | | [userAddress] | pm.bridge.qa@gmail.com | bridgeqa@seznam.cz | Plain with attachment external PGP and external CC | - And message is sent with API call: + And message is sent with API call """ { "Message": { diff --git a/test/features/bridge/smtp/send/send_append.feature b/test/features/bridge/smtp/send/send_append.feature index ea1058d9..ebf79b7f 100644 --- a/test/features/bridge/smtp/send/send_append.feature +++ b/test/features/bridge/smtp/send/send_append.feature @@ -21,7 +21,7 @@ Feature: SMTP sending with APPENDing to Sent And mailbox "Sent" for "user" has messages | externalid | from | to | subject | | bridgemessage42 | [userAddress] | bridgetest@protonmail.com | Manual send and append | - And message is sent with API call: + And message is sent with API call """ { "Message": {