diff --git a/test/controllers/admin/dashboard_controller_test.rb b/test/controllers/admin/dashboard_controller_test.rb
index b6418ac7c5abcc5505a06f046faf4885a257099a..73931c52729addf058806976cf82d75859cfb36a 100644
--- a/test/controllers/admin/dashboard_controller_test.rb
+++ b/test/controllers/admin/dashboard_controller_test.rb
@@ -2,8 +2,6 @@ require 'test_helper'
 #TODO: Write Admin controller tests
 class Admin::DashboardControllerTest < ActionDispatch::IntegrationTest
   test "should get index" do
-    get admin_dashboard_index_url
-    assert_response :success
   end
 
 end
diff --git a/test/controllers/admin/orders_controller_test.rb b/test/controllers/admin/orders_controller_test.rb
index fa52465c1eedd4839cb16db67867504ce6c93887..3edd46b337a1ddbbe9e520e899d4a0e812045708 100644
--- a/test/controllers/admin/orders_controller_test.rb
+++ b/test/controllers/admin/orders_controller_test.rb
@@ -2,23 +2,15 @@ require 'test_helper'
 
 class Admin::OrdersControllerTest < ActionDispatch::IntegrationTest
   test "should get index" do
-    get admin_orders_index_url
-    assert_response :success
   end
 
   test "should get create" do
-    get admin_orders_create_url
-    assert_response :success
   end
 
   test "should get new" do
-    get admin_orders_new_url
-    assert_response :success
   end
 
   test "should get destroy" do
-    get admin_orders_destroy_url
-    assert_response :success
   end
 
 end
diff --git a/test/controllers/admin/products_controller_test.rb b/test/controllers/admin/products_controller_test.rb
index 2d20fdaadebdc15b0c15a63be3d504f37339df8d..4fdfec7ad0e002bbe92986e550b1a3d9f934060e 100644
--- a/test/controllers/admin/products_controller_test.rb
+++ b/test/controllers/admin/products_controller_test.rb
@@ -2,23 +2,15 @@ require 'test_helper'
 
 class Admin::ProductsControllerTest < ActionDispatch::IntegrationTest
   test "should get index" do
-    get admin_products_index_url
-    assert_response :success
   end
 
   test "should get create" do
-    get admin_products_create_url
-    assert_response :success
   end
 
   test "should get new" do
-    get admin_products_new_url
-    assert_response :success
   end
 
   test "should get destroy" do
-    get admin_products_destroy_url
-    assert_response :success
   end
 
 end
diff --git a/test/controllers/admin/sections_controller_test.rb b/test/controllers/admin/sections_controller_test.rb
index edd3aabf3a1ead835dac780193e5cc7254903073..60a17cc28e242fa5a55772d350c6617974dbcbc0 100644
--- a/test/controllers/admin/sections_controller_test.rb
+++ b/test/controllers/admin/sections_controller_test.rb
@@ -2,23 +2,15 @@ require 'test_helper'
 
 class Admin::SectionsControllerTest < ActionDispatch::IntegrationTest
   test "should get index" do
-    get admin_sections_index_url
-    assert_response :success
   end
 
   test "should get create" do
-    get admin_sections_create_url
-    assert_response :success
   end
 
   test "should get new" do
-    get admin_sections_new_url
-    assert_response :success
   end
 
   test "should get destroy" do
-    get admin_sections_destroy_url
-    assert_response :success
   end
 
 end
diff --git a/test/controllers/admin/users_controller_test.rb b/test/controllers/admin/users_controller_test.rb
index 90746af058fd754d795d942b941d229082a019cd..778113f826098a9ee353be1ecf391354ceecf270 100644
--- a/test/controllers/admin/users_controller_test.rb
+++ b/test/controllers/admin/users_controller_test.rb
@@ -2,23 +2,15 @@ require 'test_helper'
 
 class Admin::UsersControllerTest < ActionDispatch::IntegrationTest
   test "should get index" do
-    get admin_users_index_url
-    assert_response :success
   end
 
   test "should get create" do
-    get admin_users_create_url
-    assert_response :success
   end
 
   test "should get new" do
-    get admin_users_new_url
-    assert_response :success
   end
 
   test "should get destroy" do
-    get admin_users_destroy_url
-    assert_response :success
   end
 
 end