Skip to content

Commit

Permalink
Update protos
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma committed Sep 24, 2024
1 parent 9854fae commit 1f0f5c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/mocks/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@
UploadModuleFileResponse,
)
from viam.proto.app.billing import (
BillingServiceBase,
GetCurrentMonthUsageRequest,
GetCurrentMonthUsageResponse,
GetInvoicePdfRequest,
Expand All @@ -174,6 +173,7 @@
GetInvoicesSummaryResponse,
GetOrgBillingInformationRequest,
GetOrgBillingInformationResponse,
UnimplementedBillingServiceBase,
)
from viam.proto.app.data import (
AddBinaryDataToDatasetByIDsRequest,
Expand All @@ -193,7 +193,6 @@
BoundingBoxLabelsByFilterResponse,
ConfigureDatabaseUserRequest,
ConfigureDatabaseUserResponse,
DataServiceBase,
DeleteBinaryDataByFilterRequest,
DeleteBinaryDataByFilterResponse,
DeleteBinaryDataByIDsRequest,
Expand All @@ -219,6 +218,7 @@
TabularDataBySQLResponse,
TagsByFilterRequest,
TagsByFilterResponse,
UnimplementedDataServiceBase,
)
from viam.proto.app.dataset import (
CreateDatasetRequest,
Expand Down Expand Up @@ -792,7 +792,7 @@ async def SetSmartMachineCredentials(
await stream.send_message(SetSmartMachineCredentialsResponse())


class MockData(DataServiceBase):
class MockData(UnimplementedDataServiceBase):
def __init__(
self,
tabular_response: List[DataClient.TabularData],
Expand Down Expand Up @@ -1120,7 +1120,7 @@ async def DeleteCompletedTrainingJob(
await stream.send_message(DeleteCompletedTrainingJobResponse())


class MockBilling(BillingServiceBase):
class MockBilling(UnimplementedBillingServiceBase):
def __init__(
self,
pdf: bytes,
Expand Down

0 comments on commit 1f0f5c5

Please sign in to comment.