[java-idp-integration-tests] 11/14: Use capability by name rather than static variable

Tom Zeller tzeller at dragonacea.biz
Thu Jun 17 13:55:55 UTC 2021


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch main
in repository java-idp-integration-tests.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=6d4b939cbb362fff529e24c6faf14f9a669d4c3d

commit 6d4b939cbb362fff529e24c6faf14f9a669d4c3d
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Jun 17 08:13:46 2021 -0500

    Use capability by name rather than static variable
---
 src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index ced126b..7bba93b 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -1510,7 +1510,7 @@ public abstract class BaseIntegrationTest
         if (browserData != null) {
             // browser name
             if (browserData.getBrowser() != null) {
-                desiredCapabilities.setBrowserName(browserData.getBrowser());
+                desiredCapabilities.setCapability("browserName", browserData.getBrowser());
             }
             // browser version
             if (browserData.getVersion() != null) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list