1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-03-03 14:52:21 +02:00

Fix incorrect param log types.

This commit is contained in:
David Steele 2020-06-16 19:25:16 -04:00
parent 6a851994f3
commit c4fe09dabe

View File

@ -122,7 +122,7 @@ archiveDbList(const String *stanza, const InfoPgData *pgData, VariantList *archi
FUNCTION_TEST_BEGIN();
FUNCTION_TEST_PARAM(STRING, stanza);
FUNCTION_TEST_PARAM_P(INFO_PG_DATA, pgData);
FUNCTION_TEST_PARAM(VARIANT, archiveSection);
FUNCTION_TEST_PARAM(VARIANT_LIST, archiveSection);
FUNCTION_TEST_PARAM(BOOL, currentDb);
FUNCTION_TEST_END();
@ -208,7 +208,7 @@ static void
backupList(VariantList *backupSection, InfoBackup *info, const String *backupLabel)
{
FUNCTION_TEST_BEGIN();
FUNCTION_TEST_PARAM(VARIANT, backupSection);
FUNCTION_TEST_PARAM(VARIANT_LIST, backupSection);
FUNCTION_TEST_PARAM(INFO_BACKUP, info);
FUNCTION_TEST_PARAM(STRING, backupLabel);
FUNCTION_TEST_END();