From 5b743355feffaedd03b011ad7bc4f9c8c13525dd Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 18 Feb 2016 17:35:21 +0200 Subject: [PATCH] Fixing test payment in Travis --- app/Http/Controllers/AccountGatewayController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/AccountGatewayController.php b/app/Http/Controllers/AccountGatewayController.php index dfbd2b386162..1fbeaa23751b 100644 --- a/app/Http/Controllers/AccountGatewayController.php +++ b/app/Http/Controllers/AccountGatewayController.php @@ -203,7 +203,7 @@ class AccountGatewayController extends BaseController if (Utils::isNinjaDev() && Input::get('23_apiKey') == env('TEST_API_KEY')) { // do nothing - we're unable to acceptance test with StripeJS } else { - $rules['publishable_key'] = 'required'; + //$rules['publishable_key'] = 'required'; } }