Skip to content

Commit f0ef848

Browse files
fix: lint formatting in test_gc.py
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9b885cd commit f0ef848

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/integration/test_gc.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,7 @@ def test_deletes_orphaned_hashes(self, mock_scan, mock_list_stored, mock_delete)
251251
assert stats["hash_deleted"] == 1
252252
assert stats["bytes_freed"] == 100
253253
assert stats["dry_run"] is False
254-
mock_delete.assert_called_once_with(
255-
"_hash/schema/orphan_path", "test_store", config=mock_schema.connection._config
256-
)
254+
mock_delete.assert_called_once_with("_hash/schema/orphan_path", "test_store", config=mock_schema.connection._config)
257255

258256
@patch("datajoint.gc.delete_schema_path")
259257
@patch("datajoint.gc.list_schema_paths")
@@ -280,9 +278,7 @@ def test_deletes_orphaned_schemas(self, mock_scan, mock_list_schemas, mock_delet
280278
assert stats["schema_paths_deleted"] == 1
281279
assert stats["bytes_freed"] == 500
282280
assert stats["dry_run"] is False
283-
mock_delete.assert_called_once_with(
284-
"schema/table/pk/field", "test_store", config=mock_schema.connection._config
285-
)
281+
mock_delete.assert_called_once_with("schema/table/pk/field", "test_store", config=mock_schema.connection._config)
286282

287283

288284
class TestFormatStats:

0 commit comments

Comments
 (0)