diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-24 01:06:04 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-24 01:06:04 +0100 |
| commit | 9e523d8a4062ad52330dff6c2ba50e54184c9bb2 (patch) | |
| tree | cc10da19d90f9ad1d17066e152602c3f88e5bf2b /test/util_test.cc | |
| parent | 242d42f32a1fbcf9fb1fe64d8c98e907e407703d (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); |
