Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 5, 2023
1 parent a7017a9 commit 3abe1d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 47 deletions.
6 changes: 3 additions & 3 deletions java/test/org/openqa/selenium/chrome/ChromeOptionsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void mergingOptionsMergesArguments() {
.asInstanceOf(MAP)
.extractingByKey("args")
.asInstanceOf(LIST)
.containsExactly("--remote-allow-origins=*", "verbose", "silent");
.containsExactly("verbose", "silent");
}

@Test
Expand Down Expand Up @@ -263,7 +263,7 @@ void mergingOptionsWithMutableCapabilities() {
.asInstanceOf(MAP)
.extractingByKey("args")
.asInstanceOf(LIST)
.containsExactly("--remote-allow-origins=*", "verbose", "silent");
.containsExactly("verbose", "silent");

assertThat(map)
.asInstanceOf(MAP)
Expand Down Expand Up @@ -328,7 +328,7 @@ void mergingOptionsWithOptionsAsMutableCapabilities() {
.asInstanceOf(MAP)
.extractingByKey("args")
.asInstanceOf(LIST)
.containsExactly("--remote-allow-origins=*", "verbose", "silent");
.containsExactly("verbose", "silent");

assertThat(map).asInstanceOf(MAP).containsEntry("opt1", "val1");

Expand Down
15 changes: 0 additions & 15 deletions java/test/org/openqa/selenium/remote/http/netty/BUILD.bazel

This file was deleted.

This file was deleted.

0 comments on commit 3abe1d2

Please sign in to comment.