Skip to content

Commit 48ea903

Browse files
committed
Adapt references to schema-files;
1 parent ffb1e6e commit 48ea903

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

api/broker/broker_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var _ = BeforeSuite(func() {
5050
conf = &config.Config{
5151
CatalogPath: "../exampleconfig/catalog-example.json",
5252
DashboardRedirectURI: dashBoardURL,
53-
PolicySchemaPath: "../policyvalidator/meta.schema.json",
53+
PolicySchemaPath: "../policyvalidator/json-schema/meta.schema.json",
5454
DefaultCustomMetricsCredentialType: "binding-secret",
5555
}
5656

api/brokerserver/broker_server_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ var _ = BeforeSuite(func() {
129129
},
130130
CatalogPath: "../exampleconfig/catalog-example.json",
131131
CatalogSchemaPath: "../schemas/catalog.schema.json",
132-
PolicySchemaPath: "../policyvalidator/meta.schema.json",
132+
PolicySchemaPath: "../policyvalidator/json-schema/meta.schema.json",
133133
Scheduler: config.SchedulerConfig{
134134
SchedulerURL: schedulerServer.URL(),
135135
},

api/cmd/api/api_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ var _ = SynchronizedBeforeSuite(func() []byte {
164164

165165
conf.CatalogPath = "../../exampleconfig/catalog-example.json"
166166
conf.CatalogSchemaPath = "../../schemas/catalog.schema.json"
167-
conf.PolicySchemaPath = "../policyvalidator/meta.schema.json"
167+
conf.PolicySchemaPath = "../policyvalidator/json-schema/meta.schema.json"
168168

169169
schedulerServer = ghttp.NewServer()
170170
conf.Scheduler.SchedulerURL = schedulerServer.URL()

api/default_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"catalog_schema_path": "/home/vcap/app/api/schemas/catalog.schema.json",
1111
"info_file_path": "/home/vcap/app/api/default_info.json",
12-
"policy_schema_path": "/home/vcap/app/api/policyvalidator/meta.schema.json",
12+
"policy_schema_path": "/home/vcap/app/api/policyvalidator/json-schema/meta.schema.json",
1313
"dashboard_redirect_uri": null,
1414
"default_credential_type": "binding-secret",
1515
"health": {

api/publicapiserver/publicapiserver_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ var _ = BeforeSuite(func() {
104104
CFServer: helpers.ServerConfig{
105105
Port: 14000 + GinkgoParallelProcess(),
106106
},
107-
PolicySchemaPath: "../policyvalidator/meta.schema.json",
107+
PolicySchemaPath: "../policyvalidator/json-schema/meta.schema.json",
108108
Scheduler: config.SchedulerConfig{
109109
SchedulerURL: schedulerServer.URL(),
110110
},

integration/components_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ func DefaultGolangAPITestConfig() apiConfig.Config {
232232
},
233233
CatalogPath: "../servicebroker/config/catalog.json",
234234
CatalogSchemaPath: "../api/schemas/catalog.schema.json",
235-
PolicySchemaPath: "../api/policyvalidator/meta.schema.json",
235+
PolicySchemaPath: "../api/policyvalidator/json-schema/meta.schema.json",
236236
InfoFilePath: "../api/exampleconfig/catalog-example.json",
237237
DashboardRedirectURI: "",
238238
CF: cf.Config{

0 commit comments

Comments
 (0)