summaryrefslogtreecommitdiff
path: root/test/recovery_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-02 19:31:50 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-04 19:37:38 +0200
commit9a947571edec16a85830837b7b149e1ea2776bac (patch)
tree9c80f84227cfaec01315545ade0deed6ae87e16b /test/recovery_test.cc
parent784020963f518aaba48b18b3fcff55d5c28a1f28 (diff)
C++11 tidying.
Diffstat (limited to 'test/recovery_test.cc')
-rw-r--r--test/recovery_test.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/recovery_test.cc b/test/recovery_test.cc
index 62cb961a..43e5b93d 100644
--- a/test/recovery_test.cc
+++ b/test/recovery_test.cc
@@ -31,16 +31,19 @@
files in the program, then also delete it here.
*/
+
#include "mono_picture_asset_writer.h"
#include "mono_picture_asset.h"
#include "test.h"
#include <asdcp/KM_util.h>
-#include <boost/test/unit_test.hpp>
#include <boost/filesystem.hpp>
+#include <boost/test/unit_test.hpp>
+
-using std::string;
-using std::shared_ptr;
using std::make_shared;
+using std::shared_ptr;
+using std::string;
+
/** Check that recovery from a partially-written MXF works */
BOOST_AUTO_TEST_CASE (recovery)