From 698ab40469841877aef82f619d06cbbe4d1cbb80 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Thu, 26 Mar 2026 15:03:47 -0400 Subject: [PATCH] Address perlcritic complaint in response to 906a0469728 --- src/test/modules/test_aio/t/TestAio.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/modules/test_aio/t/TestAio.pm b/src/test/modules/test_aio/t/TestAio.pm index 5bc80a9b130..c150118d033 100644 --- a/src/test/modules/test_aio/t/TestAio.pm +++ b/src/test/modules/test_aio/t/TestAio.pm @@ -10,6 +10,9 @@ TestAio - helpers for writing AIO related tests package TestAio; +use strict; +use warnings FATAL => 'all'; + use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; use Test::More;