summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-09 21:54:03 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-10 20:50:32 +0200
commit9e90111e53a0b0739d0789afd26f29e63f803917 (patch)
tree5df75d925be7a016b19adddf1e710177e254913d /test
parent727c1aa7da8b325dfa38c8443b1dd356acaf6ec3 (diff)
Add some includes of fmt/format.h.
Diffstat (limited to 'test')
-rw-r--r--test/audio_mapping_test.cc5
-rw-r--r--test/image_filename_sorter_test.cc3
2 files changed, 5 insertions, 3 deletions
diff --git a/test/audio_mapping_test.cc b/test/audio_mapping_test.cc
index 22412b260..0b403a492 100644
--- a/test/audio_mapping_test.cc
+++ b/test/audio_mapping_test.cc
@@ -25,10 +25,11 @@
*/
-#include <boost/test/unit_test.hpp>
#include "lib/audio_mapping.h"
-#include "lib/constants.h"
#include "lib/compose.hpp"
+#include "lib/constants.h"
+#include <boost/test/unit_test.hpp>
+#include <fmt/format.h>
using std::list;
diff --git a/test/image_filename_sorter_test.cc b/test/image_filename_sorter_test.cc
index 29b550753..c4b2622a8 100644
--- a/test/image_filename_sorter_test.cc
+++ b/test/image_filename_sorter_test.cc
@@ -25,8 +25,9 @@
*/
-#include "lib/image_filename_sorter.h"
#include "lib/compose.hpp"
+#include "lib/image_filename_sorter.h"
+#include <fmt/format.h>
#include <boost/test/unit_test.hpp>
#include <algorithm>
#include <random>