1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-11 00:50:20 +02:00

Fix incorrect error type on missing path.

This commit is contained in:
David Steele
2019-06-04 13:38:05 -04:00
parent 4b91259de8
commit 0ab6f3bb87
4 changed files with 6 additions and 6 deletions

View File

@ -269,7 +269,7 @@ testRun(void)
TEST_ERROR_FMT(
queueNeed(strNew("000000010000000100000001"), false, queueSize, walSegmentSize, PG_VERSION_92),
PathOpenError, "unable to list files for missing path '%s/spool/archive/test1/in'", testPath());
PathMissingError, "unable to list files for missing path '%s/spool/archive/test1/in'", testPath());
// -------------------------------------------------------------------------------------------------------------------------
storagePathCreateNP(storageSpoolWrite(), strNew(STORAGE_SPOOL_ARCHIVE_IN));