Skip to content

Commit

Permalink
fix: Change MTJ test dynamic column names (#3914)
Browse files Browse the repository at this point in the history
The names need to work with xAOD, and xAOD does not allow :: in the column name.
  • Loading branch information
paulgessinger authored Nov 27, 2024
1 parent 9173bb4 commit 217ad15
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1166,10 +1166,10 @@ class MultiTrajectoryTestsCommon {
BOOST_CHECK_EQUAL(ts1.template component<T>(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});

Expand Down

0 comments on commit 217ad15

Please sign in to comment.