@@ -129,7 +129,7 @@ void testExportReport() throws IOException {
129
129
.block (TIMEOUT );
130
130
assertNotNull (reportResponse , "reportResponse" );
131
131
assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
132
- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
132
+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
133
133
134
134
final var file =
135
135
downloadFile ("http://localhost:" + httpAddress .port () + "/" + reportResponse .reportPath ());
@@ -152,7 +152,7 @@ void testFileExpired() throws InterruptedException {
152
152
.block (TIMEOUT );
153
153
assertNotNull (reportResponse , "reportResponse" );
154
154
assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
155
- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
155
+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
156
156
157
157
// Download file first time
158
158
@@ -198,7 +198,7 @@ void testFileNotFound() {
198
198
serviceCall .api (ReportService .class ).exportReport (new ExportReportRequest ()).block (TIMEOUT );
199
199
assertNotNull (reportResponse , "reportResponse" );
200
200
assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
201
- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
201
+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
202
202
203
203
final var reportPath = reportResponse .reportPath ();
204
204
final var s = reportPath .substring (reportPath .lastIndexOf ("/" ));
@@ -226,7 +226,7 @@ void testWrongFileName() {
226
226
serviceCall .api (ReportService .class ).exportReport (new ExportReportRequest ()).block (TIMEOUT );
227
227
assertNotNull (reportResponse , "reportResponse" );
228
228
assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
229
- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
229
+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
230
230
231
231
final var reportPath = reportResponse .reportPath ();
232
232
final var s = reportPath .substring (reportPath .lastIndexOf ("/" ));
@@ -253,7 +253,7 @@ void testYetAnotherWrongFileName() {
253
253
serviceCall .api (ReportService .class ).exportReport (new ExportReportRequest ()).block (TIMEOUT );
254
254
assertNotNull (reportResponse , "reportResponse" );
255
255
assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
256
- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
256
+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
257
257
258
258
final var reportPath = reportResponse .reportPath ();
259
259
final var s = reportPath .substring (reportPath .lastIndexOf ("/" ));
0 commit comments