@@ -368,7 +368,7 @@ check_intrusive_list ()
368368
369369 // The static_double_list_links objects are mt::expected to be uninitialised.
370370 // The double_list_links objects are cleared by the constructor.
371- static kid marry { " Marry " };
371+ static kid mary { " Mary " };
372372 static kid bob{ " Bob" };
373373 static kid sally{ " Sally" };
374374
@@ -388,18 +388,18 @@ check_intrusive_list ()
388388 mt::expect (it == kids.end ()) << " iterator at end" ;
389389 });
390390
391- mt::test_case (" Link Marry " , [&] {
392- kids.link_tail (marry );
391+ mt::test_case (" Link Mary " , [&] {
392+ kids.link_tail (mary );
393393 mt::expect (!kids.empty ()) << " list not empty" ;
394394
395395 // auto x = kids.tail();
396- // mt::expect(mt::eq(std::string_view{kids.tail()->name()}, "Marry "sv)) <<
397- // "tail is Marry ";
396+ // mt::expect(mt::eq(std::string_view{kids.tail()->name()}, "Mary "sv)) <<
397+ // "tail is Mary ";
398398
399399 auto it = kids.begin ();
400400 mt::expect (it != kids.end ()) << " first iteration" ;
401- mt::expect (mt::eq (std::string_view{ it->name () }, " Marry " sv))
402- << " first iteration is Marry " ;
401+ mt::expect (mt::eq (std::string_view{ it->name () }, " Mary " sv))
402+ << " first iteration is Mary " ;
403403 ++it;
404404 mt::expect (it == kids.end ()) << " iterator at end" ;
405405 });
@@ -409,8 +409,8 @@ check_intrusive_list ()
409409 auto it = kids.begin ();
410410 mt::expect (!kids.empty ()) << " list not empty" ;
411411 mt::expect (it != kids.end ()) << " first iteration" ;
412- mt::expect (mt::eq (std::string_view{ it->name () }, " Marry " sv))
413- << " first iteration is Marry " ;
412+ mt::expect (mt::eq (std::string_view{ it->name () }, " Mary " sv))
413+ << " first iteration is Mary " ;
414414 ++it;
415415 mt::expect (it != kids.end ()) << " second iteration" ;
416416 mt::expect (mt::eq (std::string_view{ it->name () }, " Bob" sv))
@@ -425,8 +425,8 @@ check_intrusive_list ()
425425
426426 auto it = kids.begin ();
427427 mt::expect (it != kids.end ()) << " first iteration" ;
428- mt::expect (mt::eq (std::string_view{ it->name () }, " Marry " sv))
429- << " first iteration is Marry " ;
428+ mt::expect (mt::eq (std::string_view{ it->name () }, " Mary " sv))
429+ << " first iteration is Mary " ;
430430 ++it;
431431 mt::expect (it != kids.end ()) << " second iteration" ;
432432 mt::expect (mt::eq (std::string_view{ it->name () }, " Bob" sv))
@@ -445,8 +445,8 @@ check_intrusive_list ()
445445
446446 auto it = kids.begin ();
447447 mt::expect (it != kids.end ()) << " first iteration" ;
448- mt::expect (mt::eq (std::string_view{ it->name () }, " Marry " sv))
449- << " first iteration is Marry " ;
448+ mt::expect (mt::eq (std::string_view{ it->name () }, " Mary " sv))
449+ << " first iteration is Mary " ;
450450 ++it;
451451 mt::expect (it != kids.end ()) << " second iteration" ;
452452 mt::expect (mt::eq (std::string_view{ it->name () }, " Sally" sv))
@@ -455,8 +455,8 @@ check_intrusive_list ()
455455 mt::expect (it == kids.end ()) << " iterator at end" ;
456456 });
457457
458- mt::test_case (" Unlink Marry " , [&] {
459- marry .unlink ();
458+ mt::test_case (" Unlink Mary " , [&] {
459+ mary .unlink ();
460460 mt::expect (!kids.empty ()) << " list not empty" ;
461461
462462 auto it = kids.begin ();
@@ -467,14 +467,14 @@ check_intrusive_list ()
467467 mt::expect (it == kids.end ()) << " iterator at end" ;
468468 });
469469
470- mt::test_case (" Link Marry at head" , [&] {
471- kids.link_head (marry );
470+ mt::test_case (" Link Mary at head" , [&] {
471+ kids.link_head (mary );
472472 mt::expect (!kids.empty ()) << " list not empty" ;
473473
474474 auto it = kids.begin ();
475475 mt::expect (it != kids.end ()) << " first iteration" ;
476- mt::expect (mt::eq (std::string_view{ it->name () }, " Marry " sv))
477- << " first iteration is Marry " ;
476+ mt::expect (mt::eq (std::string_view{ it->name () }, " Mary " sv))
477+ << " first iteration is Mary " ;
478478 ++it;
479479 mt::expect (it != kids.end ()) << " second iteration" ;
480480 mt::expect (mt::eq (std::string_view{ it->name () }, " Sally" sv))
@@ -483,8 +483,8 @@ check_intrusive_list ()
483483 mt::expect (it == kids.end ()) << " iterator at end" ;
484484 });
485485
486- mt::test_case (" Unlink Marry " , [&] {
487- marry .unlink ();
486+ mt::test_case (" Unlink Mary " , [&] {
487+ mary .unlink ();
488488 mt::expect (!kids.empty ()) << " list not empty" ;
489489
490490 auto it = kids.begin ();
@@ -502,8 +502,8 @@ check_intrusive_list ()
502502 mt::expect (it == kids.end ()) << " iterator at end" ;
503503 });
504504
505- mt::test_case (" Link Marry again" , [&] {
506- kids.link_tail (marry );
505+ mt::test_case (" Link Mary again" , [&] {
506+ kids.link_tail (mary );
507507 mt::expect (!kids.empty ()) << " list not empty" ;
508508
509509 auto it = kids.begin ();
0 commit comments