From 06cefe4e050901fe4ca880f976dd9750f37550eb Mon Sep 17 00:00:00 2001 From: Dan Jones <dan.jones@noc.ac.uk> Date: Mon, 23 Jan 2023 15:27:52 +0000 Subject: [PATCH] fix: correct typos in scenario names --- features/adapter_poll.feature | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/adapter_poll.feature b/features/adapter_poll.feature index 9ecc9e9..ff05566 100644 --- a/features/adapter_poll.feature +++ b/features/adapter_poll.feature @@ -5,7 +5,7 @@ Feature: Can the adapter receive messages? The adapter poll method works as expected - Scenario: No messages are received succecssfully if the queue is empty + Scenario: No messages are received successfully if the queue is empty Given valid config When the adapter instance is created When the auth method is called @@ -13,7 +13,7 @@ Feature: Can the adapter receive messages? When the poll method is called Then a successful response is returned with 0 messages - Scenario: 2 messages are received succecssfully if the queue contains 2 messages + Scenario: 2 messages are received successfully if the queue contains 2 messages Given valid config When the adapter instance is created When the auth method is called @@ -23,7 +23,7 @@ Feature: Can the adapter receive messages? Then the protocol "validate" method is called 2 times Then the protocol "decode" method is called 2 times - Scenario: 10 messages are received succecssfully if the queue contains 10 messages + Scenario: 10 messages are received successfully if the queue contains 10 messages Given valid config When the adapter instance is created When the auth method is called -- GitLab