On Wed, 2013-01-09 at 18:47 -0500, [email protected] wrote:
> There are still 5 errors reported in the client tests but will submit fixes
> once we confirm if the changes need to be made in the tests or in the client
> code.
ACK to the patch.
I pushed it with this minor change to remove the now unused
API_REDIRECT_URL:
diff --git a/client/tests/test_helper.rb b/client/tests/test_helper.rb
index 40a2c02..9419b4a 100644
--- a/client/tests/test_helper.rb
+++ b/client/tests/test_helper.rb
@@ -13,5 +13,4 @@ API_PATH = '/api'
API_NAME = 'mockuser'
API_PASSWORD = 'mockpassword'
-API_URL_REDIRECT = "http://#{API_HOST}:#{API_PORT}"
-API_URL = "#{API_URL_REDIRECT}#{API_PATH}"
+API_URL = "http://#{API_HOST}:#{API_PORT}#{API_PATH}"
David