@@ -569,7 +569,7 @@ TEST_F(ManagerTest, ManagerAddExecuteDataThreeInputs)
569569TEST_F (ManagerTest , ManagerCallExecuteWithTwoInputsOneScript )
570570{
571571 reset ();
572-
572+
573573 conduit_cpp ::Node m1 ;
574574 std ::string m1Channel = "m1" ;
575575 m1 ["m1/data" ] = 100 ;
@@ -584,20 +584,19 @@ TEST_F(ManagerTest, ManagerCallExecuteWithTwoInputsOneScript)
584584 props .add (Ioss ::Property (CatalystManager ::CATALYST_MULTI_INPUT_PIPELINE_NAME , name ));
585585 props .add (Ioss ::Property (CatalystManager ::CATALYST_INPUT_NAME , "inputx" ));
586586 initialize ();
587- //CatalystManager::getInstance().setMultiInputWaitState(id, state, time, n);
587+ // CatalystManager::getInstance().setMultiInputWaitState(id, state, time, n);
588588 conduit_cpp ::Node m ;
589589
590-
591590 Ioss ::PropertyManager propsTwo ;
592591 propsTwo .add (Ioss ::Property (CatalystManager ::CATALYST_MULTI_INPUT_PIPELINE_NAME , name ));
593592 propsTwo .add (Ioss ::Property (CatalystManager ::CATALYST_INPUT_NAME , "inputy" ));
594593 auto idTwo = CatalystManager ::getInstance ().initialize (propsTwo , putils );
595594
596- CatalystManager & catMgr = CatalystManager ::getInstance ();
597- auto pppa = catMgr .getCatalystProps (id );
595+ CatalystManager & catMgr = CatalystManager ::getInstance ();
596+ auto pppa = catMgr .getCatalystProps (id );
598597 conduit_cpp ::Node nnna ;
599598 catMgr .addExecuteProps (nnna , pppa , state , time );
600- auto pppb = CatalystManager ::getInstance ().getCatalystProps (idTwo );
599+ auto pppb = CatalystManager ::getInstance ().getCatalystProps (idTwo );
601600 conduit_cpp ::Node nnnb ;
602601 catMgr .addExecuteProps (nnnb , pppb , state , time );
603602 bool returnDueToMultiPipeNotReady = false;
@@ -609,16 +608,15 @@ TEST_F(ManagerTest, ManagerCallExecuteWithTwoInputsOneScript)
609608 std ::string datapathb = "catalyst/channels/inputy/data/m2/data" ;
610609 EXPECT_TRUE (nnnb .has_path (datapatha ));
611610 EXPECT_TRUE (nnnb .has_path (datapathb ));
612- if (nnnb .has_path (datapatha ) && nnnb .has_path (datapathb )) {
611+ if (nnnb .has_path (datapatha ) && nnnb .has_path (datapathb )) {
613612 std ::string resa = nnnb [datapatha ].to_json ();
614613 std ::string resb = nnnb [datapathb ].to_json ();
615- if ((resa != "100 ") || (resb != " 500 ")) {
614+ if ((resa != "100 ") || (resb != " 500 ")) {
616615 std ::cerr << "ManagerCallExecuteWithTwoInputsOneScript test failing, "
617- "printing bad conduit node:\n" ;
616+ "printing bad conduit node:\n" ;
618617 std ::cerr << nnnb .to_json () << "\n" ;
619618 }
620619 EXPECT_TRUE (resa == "100" );
621620 EXPECT_TRUE (resb == "500" );
622621 }
623622}
624-
0 commit comments