From a8aa5c44fcacdb5e2b2c842d71aabe98a7570005 Mon Sep 17 00:00:00 2001 From: kazu Date: Wed, 18 Mar 2009 08:01:48 +0000 Subject: * test/test_syslog.rb (TestSyslog#test_open): check param after block again. because detect not to call block. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_syslog.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/test_syslog.rb') diff --git a/test/test_syslog.rb b/test/test_syslog.rb index 401d181f0a..7b3efb85aa 100644 --- a/test/test_syslog.rb +++ b/test/test_syslog.rb @@ -64,9 +64,11 @@ class TestSyslog < Test::Unit::TestCase assert_equal(nil, Syslog.facility) # block - Syslog.open { |param| - assert_equal(Syslog, param) + param = nil + Syslog.open { |syslog| + param = syslog } + assert_equal(Syslog, param) ensure Syslog.close if Syslog.opened? end -- cgit v1.2.3