From 950bd573f672ff86fe504d11dc429b6871c5fb00 Mon Sep 17 00:00:00 2001 From: kazu Date: Wed, 18 Mar 2009 07:40:26 +0000 Subject: * test/test_syslog.rb (TestSyslog#test_open): check block parameter in block. [ruby-dev:38180] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23001 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_syslog.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/test_syslog.rb') diff --git a/test/test_syslog.rb b/test/test_syslog.rb index 5172aa9..401d181 100644 --- a/test/test_syslog.rb +++ b/test/test_syslog.rb @@ -64,9 +64,9 @@ class TestSyslog < Test::Unit::TestCase assert_equal(nil, Syslog.facility) # block - param = nil - Syslog.open { |param| } - assert_equal(Syslog, param) + Syslog.open { |param| + assert_equal(Syslog, param) + } ensure Syslog.close if Syslog.opened? end -- cgit v1.1