Skip to content

Commit 68c0605

Browse files
Fix image name/broken link (#263)
- Fix image name/broken link - Fix test
1 parent 2bb2392 commit 68c0605

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

src/integrationtest/java/com/ericsson/ei/frontend/CommonSteps.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ public void request_sent() throws Throwable {
157157
@When("^request is performed from request list at index (\\d+)$")
158158
public void request_sent_using_list(int index) throws Throwable {
159159
response = httpRequestList.get(index).performRequest();
160-
System.out.println();
161160
}
162161

163162
@When("^request is sent for (\\d+) seconds until reponse code no longer matches (\\d+)$")

src/integrationtest/resources/features/query.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Feature: Query test
44
@QueryMissedNotificationsScenario
55
Scenario: Query missed notifications
66
Given frontend is up and running
7-
When a 'GET' request is prepared for REST API '/queryMissedNotifications'
7+
When a 'GET' request is prepared for REST API '/failed-notifications'
88
And param key 'subscriptionName' with value 'NonExistingSubscription' is added
99
And request is sent
1010
Then response code 200 is received

src/main/java/com/ericsson/ei/frontend/EIRequestsController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class EIRequestsController {
7171
*/
7272
@CrossOrigin
7373
@RequestMapping(value = { "/subscriptions", "/subscriptions/*", "/information", "/download/*", "/auth", "/auth/*",
74-
"/queryAggregatedObject", "/queryMissedNotifications", "/query", "/rules", "/status",
74+
"/queryAggregatedObject", "/failed-notifications", "/query", "/rules", "/status",
7575
"/rules/rule-check/testRulePageEnabled" }, method = RequestMethod.GET)
7676
public ResponseEntity<String> getRequests(Model model, HttpServletRequest incomingRequest) {
7777
String eiRequestUrl;

0 commit comments

Comments
 (0)