diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 1f0d0e29035..0bda9435cc6 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -12847,13 +12847,11 @@ TEST_F(EnergyPlusFixture, OutputReportTabularMonthly_WarnMonthlyBlankVariable) InitializeTabularMonthly(*state); - std::string const expected_error = delimited_string({ - " ** Warning ** Output:Table:Monthly: Blank column specified in 'SPACE GAINS ANNUAL REPORT', need to provide a variable or meter name " - }); + std::string const expected_error = delimited_string( + {" ** Warning ** Output:Table:Monthly: Blank column specified in 'SPACE GAINS ANNUAL REPORT', need to provide a variable or meter name "}); compare_err_stream(expected_error); } - TEST_F(EnergyPlusFixture, OutputReportTabularMonthly_NoWarnMonthlIfNoWeatherFileRun) { // #9621 - Only warn if a bad variable is defined in a Monthly table user requested, not on the AllSummaryAndMonthly ones diff --git a/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc b/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc index 223b45448cf..344a6a1bbed 100644 --- a/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc @@ -586,9 +586,9 @@ TEST_F(EnergyPlusFixture, OutputReportTabularAnnual_WarnBlankVariable) std::vector tableParams = firstTable->inspectTable(); - std::string const expected_error = delimited_string( - {" ** Warning ** Output:Table:Annual: Blank column specified in 'SPACE GAINS ANNUAL REPORT', need to provide a variable or meter or EMS variable name ", - " ** Warning ** Invalid aggregation type=\"\" Defaulting to SumOrAverage."}); + std::string const expected_error = delimited_string({" ** Warning ** Output:Table:Annual: Blank column specified in 'SPACE GAINS ANNUAL " + "REPORT', need to provide a variable or meter or EMS variable name ", + " ** Warning ** Invalid aggregation type=\"\" Defaulting to SumOrAverage."}); compare_err_stream(expected_error); }