Skip to content

Commit e8eea92

Browse files
committed
(pgtap/contraction) Fix pgr_contraction types check test
1 parent 5d12051 commit e8eea92

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pgtap/contraction/contraction/types_check.pg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
1818
********************************************************************PGR-GNU*/
1919

2020
BEGIN;
21-
SELECT CASE WHEN min_version('3.8.0') THEN plan(5) ELSE plan(2) END;
21+
SELECT CASE WHEN min_version('4.0.0') THEN plan(5) ELSE plan(2) END;
2222

2323
CREATE OR REPLACE FUNCTION types_check()
2424
RETURNS SETOF TEXT AS
2525
$BODY$
2626
BEGIN
2727

28-
IF NOT min_version('3.8.0') THEN
28+
IF NOT min_version('4.0.0') THEN
2929
RETURN QUERY
30-
SELECT skip(1, 'pgr_contraction new signature added on 3.8.0');
30+
SELECT skip(1, 'pgr_contraction old signature removed on 4.0.0');
3131
RETURN;
3232
END IF;
3333

0 commit comments

Comments
 (0)