diff options
author | 2007-06-18 16:18:03 +0000 | |
---|---|---|
committer | 2007-06-18 16:18:03 +0000 | |
commit | 9de7cc83e6544bbff8481669b1cdf34fa5326086 (patch) | |
tree | 088c63654c44cb6fa4efbe1ddeffd740a12617dd | |
parent | 054d9bc46432020a8ead1b5fcdae15aa7e869774 (diff) | |
download | paludis-9de7cc83e6544bbff8481669b1cdf34fa5326086.tar.gz paludis-9de7cc83e6544bbff8481669b1cdf34fa5326086.tar.xz |
Fix config_file_TEST.
-rw-r--r-- | paludis/config_file_TEST.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/config_file_TEST.cc b/paludis/config_file_TEST.cc index df371a018..70e0187dd 100644 --- a/paludis/config_file_TEST.cc +++ b/paludis/config_file_TEST.cc @@ -177,7 +177,7 @@ namespace test_cases s << "three=" << std::endl; s << "four = \"fourth\" " << std::endl; s << "five = ''" << std::endl; - KeyValueConfigFile ff(s, KeyValueConfigFileOptions()); + KeyValueConfigFile ff(s, KeyValueConfigFileOptions() + kvcfo_preserve_whitespace); TEST_CHECK_EQUAL(ff.get("one"), "first"); TEST_CHECK_EQUAL(ff.get("two"), "second"); |