about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-11-11 15:24:21 -0800
committerEric Wong <normalperson@yhbt.net>2011-11-11 15:24:21 -0800
commitde7803e4c9732b5805679d4cada6370e26fd5d67 (patch)
tree8e83bc9a5135902bd4f7048e8cd04ed67b2ad64f
parent3d067dcb24644bf78260569a9de6e6cdd60fd469 (diff)
downloadmogilefs-client-de7803e4c9732b5805679d4cada6370e26fd5d67.tar.gz
This is a followup to commit
55de4a3375793fa31993a1e9b4be777007bd31b8
(url_unescape: fix ordering of "+" => " " of swap)
-rw-r--r--test/test_backend.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/test_backend.rb b/test/test_backend.rb
index 1e462b5..860be8f 100644
--- a/test/test_backend.rb
+++ b/test/test_backend.rb
@@ -217,7 +217,6 @@ class TestBackend < Test::Unit::TestCase
     actual = input.map { |c| @backend.url_unescape c }.join "\n"
 
     expected = (0..255).map { |c| c.chr }.join "\n"
-    expected.sub! '+', ' '
 
     assert_equal expected, actual
   end