diff --git a/features/adapter_poll.feature b/features/adapter_poll.feature
index 9ecc9e9553dd86c54bda7aa66d36950eed619741..ff05566d17c68397fac3a3673a0f87412b87e60e 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