Skip to content

Commit

Permalink
unit tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kurilov committed Mar 24, 2018
1 parent 19cfacf commit a6a58f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void shouldParseWithoutFireballsThrowing()
throws IOException {
final Config config = Config.loadDefaults();
assertThat(config, notNullValue());
assertThat(config.getVersion(), equalTo("3.6.0", "version"));
assertThat(config.getVersion(), equalTo("3.6.1", "version"));
final NetConfig netConfig = config.getStorageConfig().getNetConfig();
assertThat(netConfig, notNullValue());
assertThat(netConfig.getTimeoutMilliSec(), equalTo(0, "storage.net.timeoutMilliSec"));
Expand Down Expand Up @@ -149,7 +149,7 @@ public void shouldParseWithoutFireballsThrowing()
assertThat(headers.containsKey(HttpConfig.KEY_HEADER_USER_AGENT),
equalTo(true, "storage.net.http.headers[User-Agent]"));
assertThat(headers.get(HttpConfig.KEY_HEADER_USER_AGENT),
equalTo("mongoose/3.6.0", "storage.net.http.headers[User-Agent]"));
equalTo("mongoose/3.6.1", "storage.net.http.headers[User-Agent]"));
assertThat(httpConfig.getNamespace(), nullValue("storage.net.http.namespace"));
assertThat(httpConfig.getVersioning(), equalTo(false, "storage.net.http.versioning"));
assertThat(
Expand Down

0 comments on commit a6a58f9

Please sign in to comment.