diff --git a/provider/search-aws/README.md b/provider/search-aws/README.md
index a9134a4ab0456e8097b42524be4a1dadd5e9a343..73eba2e6033b3988d83ea0eab08928bdd34cfd93 100644
--- a/provider/search-aws/README.md
+++ b/provider/search-aws/README.md
@@ -150,7 +150,7 @@ You should see in the logs that pop up what url and port it runs on. By default
 * Prior to running tests, scripts must be executed locally to generate pipeline env vars
 
 ```bash
-testing/search-test-aws/build-aws/prepare-dist.sh
+testing/integration-tests/search-test-aws/build-aws/prepare-dist.sh
 
 #Set Neccessary ENV Vars here as defined in run-tests.sh
 
diff --git a/testing/integration-tests/search-test-aws/src/test/resources/features/query/singlecluster/QueryAWS.feature b/testing/integration-tests/search-test-aws/src/test/resources/features/query/singlecluster/QueryAWS.feature
index 7bbc04518814d449b65450f67dc37d1794120fba..0f35739ec13fa837182f54bbf5e4093efcced20e 100644
--- a/testing/integration-tests/search-test-aws/src/test/resources/features/query/singlecluster/QueryAWS.feature
+++ b/testing/integration-tests/search-test-aws/src/test/resources/features/query/singlecluster/QueryAWS.feature
@@ -134,9 +134,9 @@ Feature: Search with different queries
 
     Examples:
       | kind                               | query          | field           | latitude | longitude | distance | response_code | reponse_type  | response_message                                  | errors                                              |
-      | "tenant1:search<timestamp>:*:*" | "OFFICE - 2"   | "data.Location" | -45      | -400      | 1000     | 400           | "Bad Request" | "Invalid parameters were given on search request" | "'longitude' value is out of the range [-180, 180]" |
+      | "tenant1:search<timestamp>:*:*" | "OFFICE - 2"   | "data.Location" | -45      | -400      | 1000     | 400           | "Bad Request" | "Invalid parameters were given on search request" | "'longitude' value is out of the range [-360, 360]" |
       | "tenant1:search<timestamp>:*:*" | "TEXAS OR USA" | "data.Location" | -95      | -100      | 1000     | 400           | "Bad Request" | "Invalid parameters were given on search request" | "'latitude' value is out of the range [-90, 90]"    |
-      | "tenant1:search<timestamp>:*:*" | "Harris"       | "ZipCode"       | -45      | -400      | 1000     | 400           | "Bad Request" | "Invalid parameters were given on search request" | "'longitude' value is out of the range [-180, 180]" |
+      | "tenant1:search<timestamp>:*:*" | "Harris"       | "ZipCode"       | -45      | -400      | 1000     | 400           | "Bad Request" | "Invalid parameters were given on search request" | "'longitude' value is out of the range [-360, 360]" |
       | "tenant1:search<timestamp>:*:*" | "Harris"       | "ZipCode"       | 4        | 2         | 0        | 400           | "Bad Request" | "Invalid parameters were given on search request" | "'distance' must be greater than 0" |
 
   Scenario Outline: Search data across the kinds
@@ -275,7 +275,7 @@ Feature: Search with different queries
     And I set autocomplete phrase to <autocomplete_phrase>
     And I send request to tenant <tenant>
     Then I should get in response <count> records with <returned_fields>
-    And I should get following autocomplete suggesstions <suggestions>
+    And I should get following autocomplete suggestions <suggestions>
 
     Examples:
       | tenant    | kind                                                     | query                                | limit | offset | returned_fields | count | autocomplete_phrase | suggestions       |