Skip to content

Commit 414d4dd

Browse files
committed
misc. typos
1 parent bd36c07 commit 414d4dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Framework/Core/test/test_ASoA.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ DECLARE_SOA_ARRAY_INDEX_COLUMN(Origint, origints);
720720
} // namespace test
721721

722722
DECLARE_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);
724724
DECLARE_SOA_TABLE(ManyReferences, "TEST", "MREFS", o2::soa::Index<>, test::OrigintIds);
725725
} // namespace o2::aod
726726

@@ -779,7 +779,7 @@ namespace o2::aod
779779
{
780780
namespace test
781781
{
782-
DECLARE_SOA_INDEX_COLUMN_FULL(SinglePoint, singlePointng, int32_t, Points3Ds, "");
782+
DECLARE_SOA_INDEX_COLUMN_FULL(SinglePoint, singlePoint, int32_t, Points3Ds, "");
783783
DECLARE_SOA_ARRAY_INDEX_COLUMN(Points3D, pointGroup);
784784
DECLARE_SOA_SLICE_INDEX_COLUMN(Points3D, pointSlice);
785785
DECLARE_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

Comments
 (0)