diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-24 14:13:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-24 14:13:37 +0100 |
| commit | 2ae92dcc97765deb2845dd07a338858aeb375cb3 (patch) | |
| tree | 6f0f8dec0b81a0a7d56e8dbc3a87f0986dae6748 /test/util_test.cc | |
| parent | 13db82c73af330ffbc7a813cd38c5bef36d5b54c (diff) | |
No-op: whitespace.
Diffstat (limited to 'test/util_test.cc')
| -rw-r--r-- | test/util_test.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/util_test.cc b/test/util_test.cc index d7c41a6a..eea1c799 100644 --- a/test/util_test.cc +++ b/test/util_test.cc @@ -28,7 +28,7 @@ using std::string; BOOST_AUTO_TEST_CASE (base64_decode_test) { int const N = 256; - + ifstream f ("test/data/base64_test"); BOOST_CHECK (f.good ()); string s; @@ -79,11 +79,11 @@ BOOST_AUTO_TEST_CASE (relative_to_root_test) { boost::filesystem::path root = "a"; root /= "b"; - + boost::filesystem::path file = "a"; file /= "b"; file /= "c"; - + boost::optional<boost::filesystem::path> rel = dcp::relative_to_root (root, file); BOOST_CHECK (rel); BOOST_CHECK_EQUAL (rel.get(), boost::filesystem::path ("c")); @@ -93,21 +93,21 @@ BOOST_AUTO_TEST_CASE (relative_to_root_test) boost::filesystem::path root = "a"; root /= "b"; root /= "c"; - + boost::filesystem::path file = "a"; file /= "b"; - + boost::optional<boost::filesystem::path> rel = dcp::relative_to_root (root, file); BOOST_CHECK (!rel); } { boost::filesystem::path root = "a"; - + boost::filesystem::path file = "a"; file /= "b"; file /= "c"; - + boost::optional<boost::filesystem::path> rel = dcp::relative_to_root (root, file); BOOST_CHECK (rel); |
