refact: use repository id in dataplatform

This commit is contained in:
2025-01-05 14:55:46 +01:00
parent d256fbf169
commit ae61fd3c12
6 changed files with 80 additions and 40 deletions

View File

@@ -20,7 +20,7 @@ def location(tmp_path):
def test_init(location):
repo = FSRepository("example", location, "example")
repo = FSRepository("example", "example", location)
assert repo.ls() == [
"schema",
]
@@ -45,7 +45,7 @@ def test_init(location):
@pytest.fixture
def repository(location) -> FSRepository:
return FSRepository("example", location, "example")
return FSRepository("example", "example", location)
def test_list_schemas(repository):