File tree Expand file tree Collapse file tree
java/client/test/org/openqa/selenium/remote/http Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,13 +47,13 @@ public void restoreSystemProperty() {
4747 @ Test
4848 public void canCreateDefaultHttpClientFactory () {
4949 HttpClient .Factory factory = HttpClient .Factory .createDefault ();
50- assertThat (factory .getClass ().getAnnotation (HttpClientName .class ).value ()).isEqualTo ("netty " );
50+ assertThat (factory .getClass ().getAnnotation (HttpClientName .class ).value ()).isEqualTo ("reactor " );
5151 }
5252
5353 @ Test
5454 public void canCreateHttpClientFactoryByName () {
55- HttpClient .Factory factory = HttpClient .Factory .create ("reactor " );
56- assertThat (factory .getClass ().getAnnotation (HttpClientName .class ).value ()).isEqualTo ("reactor " );
55+ HttpClient .Factory factory = HttpClient .Factory .create ("netty " );
56+ assertThat (factory .getClass ().getAnnotation (HttpClientName .class ).value ()).isEqualTo ("netty " );
5757 }
5858
5959 @ Test
You can’t perform that action at this time.
0 commit comments