summaryrefslogtreecommitdiff
path: root/engines/billing/test/functional/customers_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'engines/billing/test/functional/customers_controller_test.rb')
-rw-r--r--engines/billing/test/functional/customers_controller_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/billing/test/functional/customers_controller_test.rb b/engines/billing/test/functional/customers_controller_test.rb
index 46c33c9..cc82fc1 100644
--- a/engines/billing/test/functional/customers_controller_test.rb
+++ b/engines/billing/test/functional/customers_controller_test.rb
@@ -27,11 +27,11 @@ class CustomersControllerTest < ActionController::TestCase
test "no access if not logged in" do
get :new
- assert_access_denied(true, false)
+ assert_login_required
get :show, :id => @customer.braintree_customer_id
- assert_access_denied(true, false)
+ assert_login_required
get :edit, :id => @customer.braintree_customer_id
- assert_access_denied(true, false)
+ assert_login_required
end