diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-01-22 10:13:59 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-01-22 10:15:32 +0900 |
commit | be31ac25191b26a8a1db345a727545959654f4cb (patch) | |
tree | 49f8dbb89003bae9aa79fa3332b8511bf62d7dad /src/bin/pg_verifybackup/t/002_algorithm.pl | |
parent | 4907ba304c346051a6535e67c043779755a78e84 (diff) | |
download | postgresql-be31ac25191b26a8a1db345a727545959654f4cb.tar.gz postgresql-be31ac25191b26a8a1db345a727545959654f4cb.zip |
Run perltidy
A follow-up patch will adjust the TAP tests to follow a more-structured
format for option lists in commands, that perltidy is able to cope
better with. Putting the tree first in a clean state makes the next
change a bit easier. v20230309 has been used.
Author: Dagfinn Ilmari Mannsåker
Discussion: https://postgr.es/m/87jzc46d8u.fsf@wibble.ilmari.org
Diffstat (limited to 'src/bin/pg_verifybackup/t/002_algorithm.pl')
-rw-r--r-- | src/bin/pg_verifybackup/t/002_algorithm.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bin/pg_verifybackup/t/002_algorithm.pl b/src/bin/pg_verifybackup/t/002_algorithm.pl index 36edad8cd02..71aaa8d881f 100644 --- a/src/bin/pg_verifybackup/t/002_algorithm.pl +++ b/src/bin/pg_verifybackup/t/002_algorithm.pl @@ -42,7 +42,8 @@ sub test_checksums } # A backup with a valid algorithm should work. - $primary->command_ok(\@backup, "$format format backup ok with algorithm \"$algorithm\""); + $primary->command_ok(\@backup, + "$format format backup ok with algorithm \"$algorithm\""); # We expect each real checksum algorithm to be mentioned on every line of # the backup manifest file except the first and last; for simplicity, we @@ -50,7 +51,8 @@ sub test_checksums # is none, we just check that the manifest exists. if ($algorithm eq 'none') { - ok(-f "$backup_path/backup_manifest", "$format format backup manifest exists"); + ok( -f "$backup_path/backup_manifest", + "$format format backup manifest exists"); } else { |