summary refs log tree commit
diff options
context:
space:
mode:
authorKeith Duncan <keith.duncan@github.com>2014-07-06 14:31:02 +0100
committerKeith Duncan <keith.duncan@github.com>2014-07-06 14:31:02 +0100
commitc2564e3d8235c5fd95e312aa6c97f120904f4686 (patch)
tree34fb56df1e10db089489f649f1a605ee1fa02b2e
parent430892c8c98c334d8395bc5ad173c95baf3abb9f (diff)
downloadrack-c2564e3d8235c5fd95e312aa6c97f120904f4686.tar.gz
Rename clean slash only test
-rw-r--r--test/spec_utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_utils.rb b/test/spec_utils.rb
index 4808e988..d81835c1 100644
--- a/test/spec_utils.rb
+++ b/test/spec_utils.rb
@@ -404,7 +404,7 @@ describe Rack::Utils do
     Rack::Utils.clean_path_info("/%2E%2E/README").should.equal "/%2E%2E/README"
   end
 
-  should "not clean slash only paths" do
+  should "clean slash only paths" do
     Rack::Utils.clean_path_info("/").should.equal "/"
   end
 end