Skip to content

Commit

Permalink
[grid] allow stereotype to always allow browser version of "stable"
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Nov 2, 2023
1 parent 82ac41d commit c020b03
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -79,7 +79,9 @@ public boolean matches(Capabilities stereotype, Capabilities capabilities) {
(capabilities.getBrowserName() == null || capabilities.getBrowserName().isEmpty())
|| Objects.equals(stereotype.getBrowserName(), capabilities.getBrowserName());
boolean browserVersionMatch =
(capabilities.getBrowserVersion() == null || capabilities.getBrowserVersion().isEmpty())
(capabilities.getBrowserVersion() == null
|| capabilities.getBrowserVersion().isEmpty()
|| Objects.equals(capabilities.getBrowserVersion(), "stable"))
|| Objects.equals(stereotype.getBrowserVersion(), capabilities.getBrowserVersion());
boolean platformNameMatch =
capabilities.getPlatformName() == null
Expand Down

0 comments on commit c020b03

Please sign in to comment.