diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2021-11-20 17:54:43 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2021-11-20 17:54:43 -0500 |
commit | 405f32fc49609eb94fa39e7b5e7c1fe2bb2b73aa (patch) | |
tree | d28da75c8fb3e9576ec9ced67cdb81b359177d88 /src/test/perl/PostgreSQL/Test/Utils.pm | |
parent | f4e7ae2b8a67ad6801726553a024a3306716ef80 (diff) | |
download | postgresql-405f32fc49609eb94fa39e7b5e7c1fe2bb2b73aa.tar.gz postgresql-405f32fc49609eb94fa39e7b5e7c1fe2bb2b73aa.zip |
Require version 0.98 of Test::More for TAP tests
This means that the subtest feature will be available for use.
We expect that this change will make prairiedog go red until it is
updated, but other buildfarm animals should be fine.
Discussion: https://postgr.es/m/f5e1d308-4e33-37a7-bdf1-f6e0c75119de@dunslane.net
Diffstat (limited to 'src/test/perl/PostgreSQL/Test/Utils.pm')
-rw-r--r-- | src/test/perl/PostgreSQL/Test/Utils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Utils.pm b/src/test/perl/PostgreSQL/Test/Utils.pm index f29d43f1f32..5a7f8bcb974 100644 --- a/src/test/perl/PostgreSQL/Test/Utils.pm +++ b/src/test/perl/PostgreSQL/Test/Utils.pm @@ -60,7 +60,7 @@ use PostgreSQL::Test::SimpleTee; # specify a recent enough version of Test::More to support the # done_testing() function -use Test::More 0.87; +use Test::More 0.98; our @EXPORT = qw( generate_ascii_string |