diff --git a/features/adapter_token-valid.feature b/features/adapter_token-valid.feature
index 53fe89de568f2878e113434c1d260930911bf1d7..e0e105bbf3cf9b2d6f2b4ca5dd9aa628ec3f7222 100644
--- a/features/adapter_token-valid.feature
+++ b/features/adapter_token-valid.feature
@@ -1,19 +1,19 @@
 Feature: Is the token valid?
   The adapter tokenValid method works as expected
 
-  Scenario: If adapter has not authed token is invalid
+  Scenario: If adapter has not authed then the tokenValid returns false
     Given valid config
     When the adapter instance is created
     Then tokenValid returns false  
 
-  Scenario: If credentials.expiry is in the future token is valid
+  Scenario: If credentials.expiry is in the future then the token is valid
     Given valid config
     When the adapter instance is created
     When the auth method is called
     When the token expiry is in the future
     Then tokenValid returns true  
 
-  Scenario: If credentials.expiry is in the past token is invalid
+  Scenario: If credentials.expiry is in the past then the token is invalid
     Given valid config
     When the adapter instance is created
     When the auth method is called