Skip to content

Commit

Permalink
Fix host address in test
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Jan 14, 2019
1 parent 4daf163 commit 0afee39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ mod tests {
#[test]
fn valid_default_config() {
let default = Settings::from_str("").unwrap();
assert_eq!(default.host, "127.0.0.1");
assert_eq!(default.host, "0.0.0.0");
assert_eq!(default.port, 8080);
assert_eq!(default.path, "data/");
assert_eq!(default.writer_memory, 200_000_000);
Expand Down

0 comments on commit 0afee39

Please sign in to comment.