Skip Menu |

This queue is for tickets about the DBD-Pg CPAN distribution.

Report information
The Basics
Id: 63288
Status: resolved
Priority: 0/
Queue: DBD-Pg

People
Owner: Nobody in particular
Requestors: ilmari [...] ilmari.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] Fix skip declaration for < 9.0 bytea tests
Date: Tue, 23 Nov 2010 20:31:01 +0000
To: bug-DBD-Pg [...] rt.cpan.org
From: Dagfinn Ilmari Mannsåker <ilmari [...] ilmari.org>
--- t/06bytea.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/06bytea.t b/t/06bytea.t index d2c9203..ff63137 100644 --- a/t/06bytea.t +++ b/t/06bytea.t @@ -51,7 +51,7 @@ ok ($sth->execute(404, $binary_out), $t); if ($pgversion < 90000) { test_outputs(undef); - SKIP { skip 'No BYTEA output format setting before 9.0', 10 }; + SKIP: { skip 'No BYTEA output format setting before 9.0', 5 }; } else { test_outputs($_) for qw(hex escape); } -- 1.7.1
Fixed yesterday, actually. Thanks! David
Subject: Re: [rt.cpan.org #63288] [PATCH] Fix skip declaration for < 9.0 bytea tests
Date: Tue, 23 Nov 2010 21:37:47 +0100
To: bug-DBD-Pg [...] rt.cpan.org
From: ilmari [...] ilmari.org (Dagfinn Ilmari Mannsåker)
"David Wheeler via RT" <bug-DBD-Pg@rt.cpan.org> writes: Show quoted text
> Fixed yesterday, actually. Thanks!
I can't see it in SVN. -- ilmari "A disappointingly low fraction of the human race is, at any given time, on fire." - Stig Sandbeck Mathisen
Subject: Re: [rt.cpan.org #63288] [PATCH] Fix skip declaration for < 9.0 bytea tests
Date: Tue, 23 Nov 2010 13:19:23 -0800
To: bug-DBD-Pg [...] rt.cpan.org
From: "David E. Wheeler" <dwheeler [...] cpan.org>
On Nov 23, 2010, at 12:38 PM, (Dagfinn Ilmari Mannsåker) via RT wrote: Show quoted text
> I can't see it in SVN.
Right, sorry, I stupidly reverted it yesterday when I was reversing other changes I'd made that I realized were wrong. Fixed now in 14552. David