diff options
author | Paolo "Nusco" Perrotta <paolo.nusco.perrotta@gmail.com> | 2011-04-26 16:15:20 -0700 |
---|---|---|
committer | Paolo "Nusco" Perrotta <paolo.nusco.perrotta@gmail.com> | 2011-04-26 16:15:20 -0700 |
commit | 24e4ea582baa5f21b7262b893cbb4d852c329e75 (patch) | |
tree | 8e5f0912a22184e187532c136edf2ce56bbeffd6 /activeresource | |
parent | 2cac007c41ac2ecb98308aad108f79a2f86c8557 (diff) | |
download | rails-24e4ea582baa5f21b7262b893cbb4d852c329e75.tar.gz rails-24e4ea582baa5f21b7262b893cbb4d852c329e75.tar.bz2 rails-24e4ea582baa5f21b7262b893cbb4d852c329e75.zip |
Fixed minor typo in comment
Diffstat (limited to 'activeresource')
-rw-r--r-- | activeresource/test/connection_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/test/connection_test.rb b/activeresource/test/connection_test.rb index 6e79845aa0..7c36393cf2 100644 --- a/activeresource/test/connection_test.rb +++ b/activeresource/test/connection_test.rb @@ -50,7 +50,7 @@ class ConnectionTest < Test::Unit::TestCase # 404 is a missing resource. assert_response_raises ActiveResource::ResourceNotFound, 404 - # 405 is a missing not allowed error + # 405 is a method not allowed error assert_response_raises ActiveResource::MethodNotAllowed, 405 # 409 is an optimistic locking error |