diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-04 21:14:45 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-04 21:14:45 +0100 |
commit | 6e94848aec5d42eed5f9e1f5548ade26915ce90b (patch) | |
tree | b6cf5bc39f7da4c8853491da4008c29406b135f3 /test | |
parent | Tidy of glRef (diff) | |
download | ilt-6e94848aec5d42eed5f9e1f5548ade26915ce90b.tar.bz2 ilt-6e94848aec5d42eed5f9e1f5548ade26915ce90b.tar.xz ilt-6e94848aec5d42eed5f9e1f5548ade26915ce90b.zip |
Tidy many stringy messes with std::format
Diffstat (limited to 'test')
-rw-r--r-- | test/test-text.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test-text.cpp b/test/test-text.cpp index f652670..f185cf5 100644 --- a/test/test-text.cpp +++ b/test/test-text.cpp @@ -70,10 +70,10 @@ using CharDataTest = std::tuple<decltype(get_codepoint(nullptr)), Font::CharData BOOST_DATA_TEST_CASE(initialize_chardata_A, boost::unit_test::data::make<CharDataTest>({ - {'A', {0, {34, 35}, {627, 0}, {-1, 35}, 32}}, - {'I', {0, {6, 35}, {862, 0}, {4, 35}, 13}}, - {'j', {0, {11, 45}, {1656, 0}, {-3, 35}, 11}}, - {'o', {0, {24, 27}, {1748, 0}, {1, 27}, 27}}, + {'A', {0, {34, 35}, {712, 0}, {-1, 35}, 32}}, + {'I', {0, {6, 35}, {947, 0}, {4, 35}, 13}}, + {'j', {0, {11, 45}, {1741, 0}, {-3, 35}, 11}}, + {'o', {0, {24, 27}, {1833, 0}, {1, 27}, 27}}, }), character, expected) { |