aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAnton Davydov <antondavydov.o@gmail.com>2016-01-04 00:11:03 +0300
committerAnton Davydov <antondavydov.o@gmail.com>2016-01-04 00:11:03 +0300
commit7d74b73a066c3e996787ca021c5bbf21d8d0749e (patch)
treef2f6eae9ffef8e5832dc02c18cf9ef3d05f5af99 /actionpack
parent41ed6e90b13e8f70270531870f29454b8fe329e1 (diff)
downloadrails-7d74b73a066c3e996787ca021c5bbf21d8d0749e.tar.gz
rails-7d74b73a066c3e996787ca021c5bbf21d8d0749e.tar.bz2
rails-7d74b73a066c3e996787ca021c5bbf21d8d0749e.zip
Fix typo in test desctiption [skip ci]
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/http_basic_authentication_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/http_basic_authentication_test.rb b/actionpack/test/controller/http_basic_authentication_test.rb
index 0a5e5402b9..194f5b3790 100644
--- a/actionpack/test/controller/http_basic_authentication_test.rb
+++ b/actionpack/test/controller/http_basic_authentication_test.rb
@@ -100,7 +100,7 @@ class HttpBasicAuthenticationTest < ActionController::TestCase
assert_no_match(/\n/, result)
end
- test "succesful authentication with uppercase authorization scheme" do
+ test "successful authentication with uppercase authorization scheme" do
@request.env['HTTP_AUTHORIZATION'] = "BASIC #{::Base64.encode64("lifo:world")}"
get :index