diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index 746eecce..587696fd 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -118,8 +118,8 @@ stages: parameters: testFormat: devel/linux/{0}/1 targets: - - name: Fedora 41 - test: fedora41 + - name: Fedora 42 + test: fedora42 - name: Ubuntu 24.04 test: ubuntu2404 - name: Ubuntu 22.04 @@ -193,8 +193,8 @@ stages: targets: - name: RHEL 10.0 test: rhel/10.0 - - name: RHEL 9.5 - test: rhel/9.5 + - name: RHEL 9.6 + test: rhel/9.6 - stage: Remote_2_19 displayName: Remote 2.19 diff --git a/tests/integration/targets/postgresql_db/tasks/state_dump_restore_role.yml b/tests/integration/targets/postgresql_db/tasks/state_dump_restore_role.yml index dfe67a4d..7d28a597 100644 --- a/tests/integration/targets/postgresql_db/tasks/state_dump_restore_role.yml +++ b/tests/integration/targets/postgresql_db/tasks/state_dump_restore_role.yml @@ -87,7 +87,7 @@ assert: that: - result is changed - - result.executed_commands[0] is search("/bin/pg_dump") + - result.executed_commands[0] is search("pg_dump") - result.executed_commands[0] is search("-n schema1") - name: pg_restore archive on dst_db with session_role @@ -106,7 +106,7 @@ assert: that: - result is changed - - result.executed_commands[0] is search("/bin/pg_restore") + - result.executed_commands[0] is search("pg_restore") - result.executed_commands[0] is search("--role=") - name: check restored schema1 owner is db_session_role1 @@ -166,7 +166,7 @@ assert: that: - result is changed - - result.executed_commands[0] is search("/bin/pg_dump") + - result.executed_commands[0] is search("pg_dump") - result.executed_commands[0] is search("-n schema1") - result.executed_commands[0] is search("--role=")