fix(manage_etc_hosts): Append newline to /etc/hosts

This commit is contained in:
Brian Waldon 2014-04-07 11:01:17 -07:00
parent 8841740a2b
commit ba7cf90315
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ func generateEtcHosts(option string) (out string, err error) {
return "", err
}
return fmt.Sprintf("%s %s", DefaultIpv4Address, hostname), nil
return fmt.Sprintf("%s %s\n", DefaultIpv4Address, hostname), nil
}

View File

@ -68,7 +68,7 @@ func TestEtcHostsWrittenToDisk(t *testing.T) {
t.Fatalf("Unable to read OS hostname: %v", err)
}
expect := fmt.Sprintf("%s %s", DefaultIpv4Address, hostname)
expect := fmt.Sprintf("%s %s\n", DefaultIpv4Address, hostname)
if string(contents) != expect {
t.Fatalf("File has incorrect contents")