Skip to content

Commit

Permalink
Correcting Java workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Mar 25, 2024
1 parent c4c37c4 commit a684ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
browser: chrome
cache-key: java-${{ matrix.os }}-tests
run: |
if [[ "${{ runner.os }}" == "windows" ]]; then
if [[ "${{ matrix.os }}" == "windows" ]]; then
bazel test //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest ^
//java/test/org/openqa/selenium/federatedcredentialmanagement:FederatedCredentialManagementTest ^
//java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest ^
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
browser: chrome
cache-key: java-${{ matrix.os }}-remote-tests
run: |
if [[ "${{ runner.os }}" == "windows" ]]; then
if [[ "${{ matrix.os }}" == "windows" ]]; then
bazel test //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote ^
//java/test/org/openqa/selenium/grid/router:RemoteWebDriverDownloadTest-remote
else
Expand Down

0 comments on commit a684ab6

Please sign in to comment.