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 46fe179 commit 3b8ea0cCopy full SHA for 3b8ea0c
tests/test_migrate.py
@@ -1,4 +1,3 @@
1
-from pathlib import Path
2
from typing import Any
3
4
import stacrs
@@ -7,10 +6,3 @@
7
6
def test_migrate(item: dict[str, Any]) -> None:
8
item = stacrs.migrate(item, version="1.1.0")
9
assert item["stac_version"] == "1.1.0"
10
-
11
12
-def test_migrate_href(spec_examples: Path) -> None:
13
- item = stacrs.migrate_href(
14
- str(spec_examples / "v1.0.0" / "simple-item.json"), version="1.1.0"
15
- )
16
- assert item["stac_version"] == "1.1.0"
0 commit comments