File tree Expand file tree Collapse file tree
prometheus/src/test/java/org/opensearch/sql/prometheus/storage Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ void testGetStorageEngineWithWrongAuthType() {
130130 .thenReturn (Collections .emptyList ());
131131 PrometheusStorageFactory prometheusStorageFactory = new PrometheusStorageFactory (settings );
132132 HashMap <String , String > properties = new HashMap <>();
133- properties .put ("prometheus.uri" , "https://test.com " );
133+ properties .put ("prometheus.uri" , "https://opensearch.org " );
134134 properties .put ("prometheus.auth.type" , "random" );
135135 properties .put ("prometheus.auth.region" , "us-east-1" );
136136 properties .put ("prometheus.auth.secret_key" , "accessKey" );
@@ -150,7 +150,7 @@ void testGetStorageEngineWithNONEAuthType() {
150150 .thenReturn (Collections .emptyList ());
151151 PrometheusStorageFactory prometheusStorageFactory = new PrometheusStorageFactory (settings );
152152 HashMap <String , String > properties = new HashMap <>();
153- properties .put ("prometheus.uri" , "https://test.com " );
153+ properties .put ("prometheus.uri" , "https://opensearch.org " );
154154 StorageEngine storageEngine = prometheusStorageFactory .getStorageEngine (properties );
155155 Assertions .assertTrue (storageEngine instanceof PrometheusStorageEngine );
156156 }
You can’t perform that action at this time.
0 commit comments