@@ -720,7 +720,7 @@ DECLARE_SOA_ARRAY_INDEX_COLUMN(Origint, origints);
720720} // namespace test
721721
722722DECLARE_SOA_TABLE (References, " TEST" , " REFS" , o2::soa::Index<>, test::OrigintId);
723- DECLARE_SOA_TABLE (OtherReferences, " TEST" , " OERFS " , o2::soa::Index<>, test::AltOrigintId);
723+ DECLARE_SOA_TABLE (OtherReferences, " TEST" , " OREFS " , o2::soa::Index<>, test::AltOrigintId);
724724DECLARE_SOA_TABLE (ManyReferences, " TEST" , " MREFS" , o2::soa::Index<>, test::OrigintIds);
725725} // namespace o2::aod
726726
@@ -779,7 +779,7 @@ namespace o2::aod
779779{
780780namespace test
781781{
782- DECLARE_SOA_INDEX_COLUMN_FULL (SinglePoint, singlePointng , int32_t , Points3Ds, " " );
782+ DECLARE_SOA_INDEX_COLUMN_FULL (SinglePoint, singlePoint , int32_t , Points3Ds, " " );
783783DECLARE_SOA_ARRAY_INDEX_COLUMN (Points3D, pointGroup);
784784DECLARE_SOA_SLICE_INDEX_COLUMN (Points3D, pointSlice);
785785DECLARE_SOA_SELF_INDEX_COLUMN (OtherPoint, otherPoint);
@@ -1251,7 +1251,7 @@ TEST_CASE("TestIndexUnboundExceptions")
12511251
12521252 for (auto & row : prt) {
12531253 try {
1254- [[maybe_unused]] auto sp = row.singlePointng ();
1254+ [[maybe_unused]] auto sp = row.singlePoint ();
12551255 } catch (RuntimeErrorRef ref) {
12561256 REQUIRE (std::string{error_from_ref (ref).what } == " Index pointing to Points3Ds is not bound! Did you subscribe to the table?" );
12571257 }
0 commit comments