summaryrefslogtreecommitdiff
path: root/test/helpers_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers_test.rb')
-rw-r--r--test/helpers_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers_test.rb b/test/helpers_test.rb
index 38b0eeba..cfc2fe00 100644
--- a/test/helpers_test.rb
+++ b/test/helpers_test.rb
@@ -6,7 +6,7 @@ context 'Helpers' do
context 'URI Encoding' do
test 'should URI encode non-word characters generally' do
given = ' !*/%&?\\='
- expect = '+%21%2A%2F%25%26%3F%5C%3D'
+ expect = '%20%21%2A%2F%25%26%3F%5C%3D'
assert_equal expect, (Asciidoctor::Helpers.encode_uri_component given)
end