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 7cb5685 commit a6df1adCopy full SHA for a6df1ad
catalog/internal/catalog/catalog_test.go
@@ -416,6 +416,10 @@ func (m *MockCatalogModelRepository) Save(model dbmodels.CatalogModel) (dbmodels
416
return savedModel, nil
417
}
418
419
+func (m *MockCatalogModelRepository) GetFilterableProperties(maxLength int) (map[string][]string, error) {
420
+ return make(map[string][]string), nil
421
+}
422
+
423
// MockCatalogModelArtifactRepository mocks the CatalogModelArtifactRepository interface.
424
type MockCatalogModelArtifactRepository struct {
425
SavedArtifacts []dbmodels.CatalogModelArtifact
0 commit comments