aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_syntax.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_syntax.rb')
-rw-r--r--test/ruby/test_syntax.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 62b8d65441..beb85272ff 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -1041,7 +1041,7 @@ eom
begin;
tap do
result << :begin
- raise "An exception occured!"
+ raise "An exception occurred!"
ensure
result << :ensure
end
@@ -1057,7 +1057,7 @@ eom
begin;
tap do
result << :begin
- raise "An exception occured!"
+ raise "An exception occurred!"
rescue
result << :rescue
else