From 401be69d1ce15dea40b9054de95f5ad28079c730 Mon Sep 17 00:00:00 2001 From: Paul Gessinger Date: Wed, 27 Nov 2024 14:28:11 +0100 Subject: [PATCH] fix: Change MTJ test dynamic column names The names need to work with xAOD, and xAOD does not allow :: in the column name. --- .../Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp b/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp index 422dc58e053..368138fe38d 100644 --- a/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp +++ b/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp @@ -1166,10 +1166,10 @@ class MultiTrajectoryTestsCommon { BOOST_CHECK_EQUAL(ts1.template component(col), value); }; - test("std::uint32_t", std::uint32_t{1}); - test("std::uint64_t", std::uint64_t{2}); - test("std::int32_t", std::int32_t{-3}); - test("std::int64_t", std::int64_t{-4}); + test("std_uint32_t", std::uint32_t{1}); + test("std_uint64_t", std::uint64_t{2}); + test("std_int32_t", std::int32_t{-3}); + test("std_int64_t", std::int64_t{-4}); test("float", float{8.9}); test("double", double{656.2});