Skip to content

Commit

Permalink
[bidi][java] Fix a bug caused due to typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani committed Mar 27, 2024
1 parent 1f058a8 commit 5b60724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/bidi/module/Network.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class Network implements AutoCloseable {
new Event<>("network.responseStarted", ResponseDetails::fromJsonMap);

private final Event<ResponseDetails> responseCompleted =
new Event<>("network.responseStarted", ResponseDetails::fromJsonMap);
new Event<>("network.responseCompleted", ResponseDetails::fromJsonMap);

private final Event<ResponseDetails> authRequired =
new Event<>("network.authRequired", ResponseDetails::fromJsonMap);
Expand Down

0 comments on commit 5b60724

Please sign in to comment.