diff options
author | Peter Eisentraut | 2024-01-03 12:16:55 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-01-03 12:16:55 +0000 |
commit | 8ce5aef2e6337a5c1f6693c486c28310c2b35dfc (patch) | |
tree | a48ada0170a4dfb6c18ab8d40df3122140f5bbfc /src | |
parent | 283a95da923605c1cc148155db2d865d0801b419 (diff) |
Make Perl warnings fatal in newly added TAP tests
New TAP tests added by commits 9a17be1e and 4710b67d missed to convert
warnings to FATAL. This commit fixes that.
Author: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/t/004_subscription.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/t/004_subscription.pl b/src/bin/pg_upgrade/t/004_subscription.pl index d08ffffe108..4f7f6d9c04a 100644 --- a/src/bin/pg_upgrade/t/004_subscription.pl +++ b/src/bin/pg_upgrade/t/004_subscription.pl @@ -2,7 +2,7 @@ # Test for pg_upgrade of logical subscription use strict; -use warnings; +use warnings FATAL => 'all'; use File::Find qw(find); |