Skip to content

Commit

Permalink
linux new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Apr 2, 2024
1 parent abb8e88 commit 7900803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config.Net.Tests/Stores/IniFileConfigStoreTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void Write_NewLine(string key, string value, string expectedOutput)
ini.Write(key, value);

string resultText = File.ReadAllText(fullPath);
Assert.Equal(expectedOutput + "\r\n", resultText);
Assert.Equal(expectedOutput + "\n", resultText);
}
}
}

0 comments on commit 7900803

Please sign in to comment.