aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-15 11:19:44 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-15 11:19:44 -0800
commit108171a44e7c4f762ec7a1db99b1e3e8b87744df (patch)
treeef423b43d2ba22f4a4999fda484386403e46c721 /actionpack
parent89c46aaaabc09610c440022ea625a0e05215d5ef (diff)
parentc758093eca303704f52b45fd0660e13600b9b315 (diff)
downloadrails-108171a44e7c4f762ec7a1db99b1e3e8b87744df.tar.gz
rails-108171a44e7c4f762ec7a1db99b1e3e8b87744df.tar.bz2
rails-108171a44e7c4f762ec7a1db99b1e3e8b87744df.zip
Merge pull request #13307 from akshay-vishnoi/typo
Spelling and Grammar check [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/dispatch/url_generation_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/url_generation_test.rb b/actionpack/test/dispatch/url_generation_test.rb
index f919592d24..fdea27e2d2 100644
--- a/actionpack/test/dispatch/url_generation_test.rb
+++ b/actionpack/test/dispatch/url_generation_test.rb
@@ -66,7 +66,7 @@ module TestUrlGeneration
assert_equal "http://www.example.com:8080/foo", foo_url(host: "www.example.com:8080", protocol: "http://")
end
- test "port option overides the host" do
+ test "port option overrides the host" do
assert_equal "http://www.example.com:8080/foo", foo_url(host: "www.example.com:8443", protocol: "http://", port: 8080)
end