summaryrefslogtreecommitdiff
path: root/test/image_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-10 02:02:19 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-10 02:02:19 +0200
commit5b0e331380c83ec9835e8aa42fd342b2f0ad275d (patch)
tree13c27f0b3420f5c3a268a5a22a9172675fdc370c /test/image_test.cc
parent5d838bc863a7569e68546026c109607fd5a94362 (diff)
Use dcp::compose rather than our own.compose
Diffstat (limited to 'test/image_test.cc')
-rw-r--r--test/image_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/image_test.cc b/test/image_test.cc
index 3993b3efb..c461a93d3 100644
--- a/test/image_test.cc
+++ b/test/image_test.cc
@@ -26,12 +26,12 @@
*/
-#include "lib/compose.hpp"
#include "lib/image.h"
#include "lib/image_content.h"
#include "lib/image_decoder.h"
#include "lib/ffmpeg_image_proxy.h"
#include "test.h"
+#include <dcp/compose.h>
#include <boost/test/unit_test.hpp>
#include <iostream>
@@ -364,7 +364,7 @@ BOOST_AUTO_TEST_CASE (crop_scale_window_test7)
true,
false
);
- path file = String::compose("crop_scale_window_test7-%1.png", left_crop);
+ path file = dcp::compose("crop_scale_window_test7-%1.png", left_crop);
write_image(cropped, path("build") / "test" / file);
check_image(path("test") / "data" / file, path("build") / "test" / file, 10);
}