diff --git a/tests/integration/features/integration_tests.feature b/tests/integration/features/integration_tests.feature index a92dc66d0..9bf32c39e 100644 --- a/tests/integration/features/integration_tests.feature +++ b/tests/integration/features/integration_tests.feature @@ -383,7 +383,6 @@ Feature: Integration tests Then I can see the backup named "fifth_backup" when I list the backups Then I can verify the backup named "fifth_backup" with md5 checks "disabled" successfully When I purge the backup history to retain only 2 backups - When I purge the decommissioned node backup history to retain only 2 backups Then I cannot see the backup named "first_backup" when I list the backups Then I cannot see the backup named "second_backup" when I list the backups Then I cannot see the backup named "third_backup" when I list the backups diff --git a/tests/integration/features/steps/integration_steps.py b/tests/integration/features/steps/integration_steps.py index eb1c4005a..4840f689c 100644 --- a/tests/integration/features/steps/integration_steps.py +++ b/tests/integration/features/steps/integration_steps.py @@ -1156,11 +1156,6 @@ def _i_purge_the_backup_history_to_retain_only_nb_backups(context, backup_count) medusa.purge.main(context.medusa_config, max_backup_count=int(backup_count)) -@when(r"I purge the decommissioned node backup history to retain only {backup_count} backups") -def _i_purge_decommissioned_the_backup_history_to_retain_only_nb_backups(context, backup_count): - medusa.purge_decommissioned(context.medusa_config, max_backup_count=int(backup_count)) - - @then(r"I see {metrics_count} metrics emitted") def _i_see_metrics_emitted(context, metrics_count): metrics = list(LocalMonitoring(context.medusa_config).load_metrics())