@@ -197,38 +197,39 @@ TEST_F(RNTupleJoinComposerTest, UnalignedMultipleJoinFields)
197197 try {
198198 RNTupleComposer::CreateJoin ({fNTupleNames [0 ], fFileNames [0 ]}, {fNTupleNames [3 ], fFileNames [3 ]},
199199 {" i" , " j" , " k" , " l" , " m" });
200- FAIL () << " trying to create a join processor with more than four join fields should throw" ;
200+ FAIL () << " trying to create an RNTupleJoinComposer with more than four join fields should throw" ;
201201 } catch (const ROOT ::RException &err) {
202202 EXPECT_THAT (err.what (), testing::HasSubstr (" a maximum of four join fields is allowed" ));
203203 }
204204
205205 try {
206206 RNTupleComposer::CreateJoin ({fNTupleNames [0 ], fFileNames [0 ]}, {fNTupleNames [3 ], fFileNames [3 ]}, {" i" , " i" });
207- FAIL () << " trying to create a join processor with duplicate join fields should throw" ;
207+ FAIL () << " trying to create an RNTupleJoinComposer with duplicate join fields should throw" ;
208208 } catch (const ROOT ::RException &err) {
209209 EXPECT_THAT (err.what (), testing::HasSubstr (" join fields must be unique" ));
210210 }
211211
212212 try {
213213 auto composer =
214214 RNTupleComposer::CreateJoin ({fNTupleNames [0 ], fFileNames [0 ]}, {fNTupleNames [1 ], fFileNames [1 ]}, {" l" });
215- // Without registering a field, the processor won't be initialized.
215+ // Without registering a field, the compoer won't be initialized.
216216 composer->RequestField <float >(" x" );
217- FAIL () << " trying to use a join processor where not all join fields are present in the primary processor should "
218- " throw" ;
217+ FAIL () << " trying to use an RNTupleJoinComposer where not all join fields are present in the primary composition "
218+ " should throw" ;
219219 } catch (const ROOT ::RException &err) {
220- EXPECT_THAT (err.what (), testing::HasSubstr (" could not find join field \" l\" in primary processor \" ntuple1\" " ));
220+ EXPECT_THAT (err.what (), testing::HasSubstr (" could not find join field \" l\" in primary composition \" ntuple1\" " ));
221221 }
222222
223223 try {
224224 auto composer = RNTupleComposer::CreateJoin ({fNTupleNames [0 ], fFileNames [0 ]}, {fNTupleNames [1 ], fFileNames [1 ]},
225225 {" i" , " j" , " k" });
226- // Without registering a field, the processor won't be initialized.
226+ // Without registering a field, the composer won't be initialized.
227227 composer->RequestField <float >(" x" );
228- FAIL () << " trying to use a join processor where not all join fields are present in the auxiliary processor "
229- " should throw" ;
228+ FAIL () << " trying to use an RNTupleJoinComposer where not all join fields are present in the auxiliary "
229+ " composition should throw" ;
230230 } catch (const ROOT ::RException &err) {
231- EXPECT_THAT (err.what (), testing::HasSubstr (" could not find join field \" j\" in auxiliary processor \" ntuple2\" " ));
231+ EXPECT_THAT (err.what (),
232+ testing::HasSubstr (" could not find join field \" j\" in auxiliary composition \" ntuple2\" " ));
232233 }
233234
234235 auto composer =
0 commit comments