We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24cb4ac commit ed2f6f3Copy full SHA for ed2f6f3
1 file changed
tests/operations_test.py
@@ -69,11 +69,11 @@ def test_cache_clear(actual_operations: Operations) -> None:
69
assert response["success"]
70
71
72
-def test_snapshot(actual_operations: Operations) -> None:
+def test_snapshot(actual_operations: Operations, tmp_path) -> None:
73
"""Test that the Operations object can perform the snapshot operation."""
74
response = actual_operations.perform(
75
"snapshot",
76
- {"snapshot_path": "/tmp"}, # noqa: S108
+ {"snapshot_path": str(tmp_path)}, # noqa: S108
77
)
78
79
0 commit comments