Skip to content

Commit

Permalink
reference
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Sep 28, 2024
1 parent 8245b31 commit 22ac731
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/UnitTests/Core/EventData/SeedEdmTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct SpacePoint {};
BOOST_AUTO_TEST_CASE(seed_edm_default) {
std::array<Acts::Test::SpacePoint, 3> storage{};
Acts::Seed<Acts::Test::SpacePoint> seed(storage[0], storage[1], storage[2]);
const std::array<const Acts::Test::SpacePoint*, 3> sps = seed.sp();
const std::array<const Acts::Test::SpacePoint*, 3>& sps = seed.sp();
BOOST_CHECK_NE(sps[0], nullptr);
BOOST_CHECK_NE(sps[1], nullptr);
BOOST_CHECK_NE(sps[2], nullptr);
Expand All @@ -36,7 +36,7 @@ BOOST_AUTO_TEST_CASE(seed_edm_3d) {
std::array<Acts::Test::SpacePoint, 3> storage{};
Acts::Seed<Acts::Test::SpacePoint, 3> seed(storage[0], storage[1],
storage[2]);
const std::array<const Acts::Test::SpacePoint*, 3> sps = seed.sp();
const std::array<const Acts::Test::SpacePoint*, 3>& sps = seed.sp();
BOOST_CHECK_NE(sps[0], nullptr);
BOOST_CHECK_NE(sps[1], nullptr);
BOOST_CHECK_NE(sps[2], nullptr);
Expand All @@ -55,7 +55,7 @@ BOOST_AUTO_TEST_CASE(seed_edm_4d) {
std::array<Acts::Test::SpacePoint, 4> storage{};
Acts::Seed<Acts::Test::SpacePoint, 4> seed(storage[0], storage[1], storage[2],
storage[3]);
const std::array<const Acts::Test::SpacePoint*, 4> sps = seed.sp();
const std::array<const Acts::Test::SpacePoint*, 4>& sps = seed.sp();
BOOST_CHECK_NE(sps[0], nullptr);
BOOST_CHECK_NE(sps[1], nullptr);
BOOST_CHECK_NE(sps[2], nullptr);
Expand Down

0 comments on commit 22ac731

Please sign in to comment.