Skip to content

Commit c88f60e

Browse files
committed
Hot Backup only tested for enterprise
1 parent 3fc95b6 commit c88f60e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_backup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313

1414
@pytest.mark.asyncio
15-
async def test_backup(url, sys_db_name, bad_db, token, cluster):
16-
if not cluster:
17-
pytest.skip("Backup tests are only applicable to cluster setups.")
15+
async def test_backup(url, sys_db_name, bad_db, token, enterprise):
16+
if not enterprise:
17+
pytest.skip("Backup API is only available in ArangoDB Enterprise Edition")
1818

1919
with pytest.raises(BackupCreateError):
2020
await bad_db.backup.create()

0 commit comments

Comments
 (0)