summaryrefslogtreecommitdiffstats
path: root/sample/test.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-13 07:18:45 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-13 07:18:45 +0000
commit776f222f590998bc0da95990b9d113b63103c6a6 (patch)
tree5f3558168cba03413c22fb5a9b3a7d64e0519df2 /sample/test.rb
parent8b8a531c69c5e3d34733cec67cbaa19da8e3517b (diff)
downloadruby-776f222f590998bc0da95990b9d113b63103c6a6.tar.gz
ruby-776f222f590998bc0da95990b9d113b63103c6a6.tar.xz
ruby-776f222f590998bc0da95990b9d113b63103c6a6.zip
2000-03-13
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/test.rb')
-rw-r--r--sample/test.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/sample/test.rb b/sample/test.rb
index ae3e76428..2e9d3e08e 100644
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -143,8 +143,8 @@ while tmp.gets()
gsub!('VT100', 'Vt100')
redo;
end
- $bad = 1 if /vt100/;
- $bad = 1 if /VT100/;
+ $bad = 1 if /vt100/
+ $bad = 1 if /VT100/
end
ok(tmp.eof? && !$bad)
tmp.close
@@ -181,6 +181,7 @@ until i>4
end
ok(i>4)
+
# exception handling
check "exception";