From: Anders S. Mortensen Date: Wed, 1 Nov 2006 09:56:50 +0000 (+0000) Subject: Insert 0 instead of empty in case of failure. X-Git-Tag: CPAN-v1.02~54^2~805 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=1a4c5ca7fe06c3e6b864b45ea071d500753d3ab5;ds=sidebyside Insert 0 instead of empty in case of failure. --- diff --git a/lib/ZOOM/IRSpy/Test/Record/Fetch.pm b/lib/ZOOM/IRSpy/Test/Record/Fetch.pm index 6021ade..6ed0edb 100644 --- a/lib/ZOOM/IRSpy/Test/Record/Fetch.pm +++ b/lib/ZOOM/IRSpy/Test/Record/Fetch.pm @@ -1,4 +1,4 @@ -# $Id: Fetch.pm,v 1.11 2006-10-31 12:42:32 mike Exp $ +# $Id: Fetch.pm,v 1.12 2006-11-01 09:56:50 sondberg Exp $ # See the "Main" test package for documentation @@ -91,7 +91,7 @@ sub record { $conn->record()->store_result('record_fetch', 'syntax' => $syn, - 'ok' => defined $text); + 'ok' => defined $text ? 1 : 0); return ZOOM::IRSpy::Status::TASK_DONE; }