Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/tests/_internal/core/backends/seeweb/test_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from unittest.mock import MagicMock, patch

import pytest
from gpuhunt import RawCatalogItem
from gpuhunt import CatalogItem

from dstack._internal.core.backends.base.compute import (
ComputeWithInstanceVolumesSupport,
Expand Down Expand Up @@ -41,8 +41,9 @@ def _compute(regions=None) -> SeewebCompute:
return compute


def _raw(name: str, gpu: str, location: str = "it-fr2") -> RawCatalogItem:
return RawCatalogItem(
def _raw(name: str, gpu: str, location: str = "it-fr2") -> CatalogItem:
return CatalogItem(
provider="seeweb",
instance_name=name,
location=location,
price=0.38,
Expand Down
Loading