summaryrefslogtreecommitdiff
path: root/sample
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
commit31c55301e4c3c84803186d28d2764363b457532f (patch)
tree5f3558168cba03413c22fb5a9b3a7d64e0519df2 /sample
parent976692f8ae8377af944f09177c8e79cb94809fe9 (diff)
2000-03-13
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample')
-rw-r--r--sample/test.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/sample/test.rb b/sample/test.rb
index ae3e764280..2e9d3e08ee 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";