From f41134d86c76e8ef37b877df7989d02ec579305a Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Sun, 11 May 2008 23:05:52 +0100 Subject: Use true/false for the busy_handler return value as the rdoc suggests. --- test/tc_integration.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tc_integration.rb b/test/tc_integration.rb index cacaee7..6c5789f 100644 --- a/test/tc_integration.rb +++ b/test/tc_integration.rb @@ -537,7 +537,7 @@ module Integration @db.busy_handler do |data,count| handler_call_count += 1 busy.unlock - 1 + true end assert_nothing_raised do @@ -567,7 +567,7 @@ module Integration @db.busy_handler do |data, count| handler_call_count += 1 - 0 + false end assert_raise( SQLite3::BusyException ) do -- cgit