From 8a1b3be9fa8c628c45b75a6b87f5f23e997a449b Mon Sep 17 00:00:00 2001 From: Houkime <> Date: Wed, 22 Feb 2023 10:25:51 +0000 Subject: [PATCH] test(backups): reenable snapshot testing --- tests/test_graphql/test_backup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_graphql/test_backup.py b/tests/test_graphql/test_backup.py index 9753217..193e8ab 100644 --- a/tests/test_graphql/test_backup.py +++ b/tests/test_graphql/test_backup.py @@ -98,6 +98,6 @@ def test_no_repo(memory_backup): assert memory_backup.backuper.get_snapshots("") == [] -# def test_one_snapshot(backups, dummy_service): -# backups.back_up(dummy_service) -# assert len(backups.get_snapshots(dummy_service)) == 1 +def test_one_snapshot(backups, dummy_service): + backups.back_up(dummy_service) + assert len(backups.get_snapshots(dummy_service)) == 1