Skip to content

Commit 2f31c5c

Browse files
committed
[tests] Fix basic authentication test
The change is caused by this update: mccutchen/go-httpbin@dff73e2
1 parent 0aea785 commit 2f31c5c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/modules/plugins/pages/plugin-web-app.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ multiple configurations for authentication on different websites.
143143
----
144144
web-application.basic-authentication.httpbingo.url-regex=https:\/\/httpbingo\.org
145145
web-application.basic-authentication.httpbingo.username=user
146-
web-application.basic-authentication.httpbingo.password=passwd
146+
web-application.basic-authentication.httpbingo.password=password
147147
148148
web-application.basic-authentication.example.url-regex=.*example\.org
149149
web-application.basic-authentication.example.username=admin

vividus-tests/src/main/resources/properties/environment/system/web/environment.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ applitools.server-uri=https://eyes.applitools.com/
99

1010
web-application.basic-authentication.httpbingo.url-regex=https:\/\/httpbingo\.org
1111
web-application.basic-authentication.httpbingo.username=user
12-
web-application.basic-authentication.httpbingo.password=passwd
12+
web-application.basic-authentication.httpbingo.password=password

vividus-tests/src/main/resources/story/system/BasicAuthentication.story

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Meta:
33

44
Scenario: Authorization test using the "httpbingo" basic authentication configuration
55
Given I am on page with URL `https://httpbingo.org`
6-
When I click on element located by `linkUrl(/basic-auth/user/passwd)`
6+
When I click on element located by `linkUrl(/basic-auth/user/password)`
77
Then text `"authorized": true` exists

0 commit comments

Comments
 (0)