summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/integration/layout_test.rb4
-rw-r--r--test/test_helper.rb6
2 files changed, 1 insertions, 9 deletions
diff --git a/test/integration/layout_test.rb b/test/integration/layout_test.rb
index fd9ddc28e..b4f472a75 100644
--- a/test/integration/layout_test.rb
+++ b/test/integration/layout_test.rb
@@ -36,9 +36,7 @@ class LayoutTest < ActionDispatch::IntegrationTest
end
test "browsing to an unauthorized page should render the base layout" do
- change_user_password('miscuser9', 'test1234')
-
- log_user('miscuser9','test1234')
+ log_user('jsmith','jsmith')
get "/admin"
assert_response :forbidden
diff --git a/test/test_helper.rb b/test/test_helper.rb
index b374a1422..27acdfc91 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -132,12 +132,6 @@ class ActiveSupport::TestCase
::I18n.locale = saved_localed
end
- def change_user_password(login, new_password)
- user = User.where(:login => login).first
- user.password, user.password_confirmation = new_password, new_password
- user.save!
- end
-
def self.ldap_configured?
@test_ldap = Net::LDAP.new(:host => '127.0.0.1', :port => 389)
return @test_ldap.bind