From 2ae92dcc97765deb2845dd07a338858aeb375cb3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 24 Jun 2015 14:13:37 +0100 Subject: No-op: whitespace. --- test/util_test.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/util_test.cc') 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 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 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 rel = dcp::relative_to_root (root, file); BOOST_CHECK (rel); -- cgit v1.2.3