1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-08-07 12:59:45 +00:00

Fix unit test for IniParser.

I'm not sure why graph needs the -eol part for the
value part, hopefully I'll find out at some point.
This commit is contained in:
King_DuckZ 2017-05-06 18:40:39 +01:00
parent 5b59ca3c41
commit ebed6fd1d4
3 changed files with 19 additions and 15 deletions

View file

@ -48,7 +48,7 @@ TEST_CASE ("Add and retrieve values from SettingsBag", "[settings][ini]") {
REQUIRE(ss.tellg() == 0);
auto ini = SafeStackObject<IniFile>(std::istream_iterator<char>(ss), std::istream_iterator<char>());
REQUIRE(ini->parse_success());
CHECK(ini->parse_success());
REQUIRE(ini->parsed_characters() == raw_ini_char_count);
SettingsBag settings(ini);