@@ -129,7 +129,7 @@ void testExportReport() throws IOException {
129129 .block (TIMEOUT );
130130 assertNotNull (reportResponse , "reportResponse" );
131131 assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
132- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
132+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
133133
134134 final var file =
135135 downloadFile ("http://localhost:" + httpAddress .port () + "/" + reportResponse .reportPath ());
@@ -152,7 +152,7 @@ void testFileExpired() throws InterruptedException {
152152 .block (TIMEOUT );
153153 assertNotNull (reportResponse , "reportResponse" );
154154 assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
155- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
155+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
156156
157157 // Download file first time
158158
@@ -198,7 +198,7 @@ void testFileNotFound() {
198198 serviceCall .api (ReportService .class ).exportReport (new ExportReportRequest ()).block (TIMEOUT );
199199 assertNotNull (reportResponse , "reportResponse" );
200200 assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
201- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
201+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
202202
203203 final var reportPath = reportResponse .reportPath ();
204204 final var s = reportPath .substring (reportPath .lastIndexOf ("/" ));
@@ -226,7 +226,7 @@ void testWrongFileName() {
226226 serviceCall .api (ReportService .class ).exportReport (new ExportReportRequest ()).block (TIMEOUT );
227227 assertNotNull (reportResponse , "reportResponse" );
228228 assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
229- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
229+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
230230
231231 final var reportPath = reportResponse .reportPath ();
232232 final var s = reportPath .substring (reportPath .lastIndexOf ("/" ));
@@ -253,7 +253,7 @@ void testYetAnotherWrongFileName() {
253253 serviceCall .api (ReportService .class ).exportReport (new ExportReportRequest ()).block (TIMEOUT );
254254 assertNotNull (reportResponse , "reportResponse" );
255255 assertNotNull (reportResponse .reportPath (), "reportResponse.reportPath" );
256- assertTrue (reportResponse .reportPath ().matches ("^v1/scalecube. endpoints/.*/files/.*$" ));
256+ assertTrue (reportResponse .reportPath ().matches ("^v1/endpoints/.*/files/.*$" ));
257257
258258 final var reportPath = reportResponse .reportPath ();
259259 final var s = reportPath .substring (reportPath .lastIndexOf ("/" ));
0 commit comments