summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-02-28 08:38:01 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-02-28 12:55:44 +0900
commitf1fb2bf29eeb8144326230b62c83b9ec72a89a59 (patch)
treee6eb7f02bdae22e66ab88b22beae3380a4a177b9 /test
parent4f3067fe2f27089847052a39147c297a03bad3f0 (diff)
downloadmruby-f1fb2bf29eeb8144326230b62c83b9ec72a89a59.tar.gz
mruby-f1fb2bf29eeb8144326230b62c83b9ec72a89a59.zip
Remove `?A` style string literals from string tests; #4303
We have a plan to obsolete this style in the future.
Diffstat (limited to 'test')
-rw-r--r--test/t/string.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/t/string.rb b/test/t/string.rb
index 5e92ae345..7d3dd3c9c 100644
--- a/test/t/string.rb
+++ b/test/t/string.rb
@@ -717,6 +717,5 @@ end
assert('String literal concatenation') do
assert_equal 2, ("A" "B").size
assert_equal 3, ('A' "B" 'C').size
- assert_equal 3, (?A "#{?B}C").size
assert_equal 4, (%(A) "B#{?C}" "D").size
end