summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-27 13:54:09 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-27 13:54:09 +0000
commit1d9030a1073bbc6d8fcec6cd37e3c6ea3b005d8a (patch)
tree93b8f2ea500bd1b67dd5d00211d5b470fbf1b236 /bootstraptest
parentb3d126d5dea5dbfacc0cd77de12c6482e1c9e360 (diff)
bootstraptest/test_insns.rb: Fix typo
on test message. "torexp" insn does not exist. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_insns.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/test_insns.rb b/bootstraptest/test_insns.rb
index 4f533c6906..4dd888897a 100644
--- a/bootstraptest/test_insns.rb
+++ b/bootstraptest/test_insns.rb
@@ -69,7 +69,7 @@ tests = [
[ 'tostring / concatstrings', %q{ "#{true}" }, ],
[ 'freezestring', %q{ "#{true}"}, fsl, ],
[ 'freezestring', %q{ "#{true}"}, '-d', fsl, ],
- [ 'torexp', %q{ /#{true}/ =~ "true" && $~ }, ],
+ [ 'toregexp', %q{ /#{true}/ =~ "true" && $~ }, ],
[ 'newarray', %q{ ["true"][0] }, ],
[ 'duparray', %q{ [ true ][0] }, ],