diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2022-03-24 20:51:40 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2022-03-24 20:51:40 +0100 |
commit | 7dac61402e34c6d41d5d11cdc4c6a55f91e24026 (patch) | |
tree | 27c64414df6d95ebbb99cb5e1f8a21b519e060d8 /src/bin/pg_basebackup/t/010_pg_basebackup.pl | |
parent | 412ad7a55639516f284cd0ef9757d6ae5c7abd43 (diff) | |
download | postgresql-7dac61402e34c6d41d5d11cdc4c6a55f91e24026.tar.gz |
Remove unused module imports from TAP tests
The Config and Cwd modules were no longer used, but remained imported,
in a number of tests. Remove to keep the imports to the actually used
modules.
Reviewed-by: Andrew Dunstan <andrew@dunslane.net>
Discussion: https://postgr.es/m/A5A074CD-3198-492B-BE5E-7961EFC3733F@yesql.se
Diffstat (limited to 'src/bin/pg_basebackup/t/010_pg_basebackup.pl')
-rw-r--r-- | src/bin/pg_basebackup/t/010_pg_basebackup.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/t/010_pg_basebackup.pl b/src/bin/pg_basebackup/t/010_pg_basebackup.pl index 2869a239e7..9aa35a16a4 100644 --- a/src/bin/pg_basebackup/t/010_pg_basebackup.pl +++ b/src/bin/pg_basebackup/t/010_pg_basebackup.pl @@ -3,8 +3,6 @@ use strict; use warnings; -use Cwd; -use Config; use File::Basename qw(basename dirname); use File::Path qw(rmtree); use Fcntl qw(:seek); |