Skip to content

Commit

Permalink
Fixup a couple of tests refs #15444
Browse files Browse the repository at this point in the history
  • Loading branch information
friedmud committed Mar 3, 2021
1 parent 6debe75 commit 5e07b5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion framework/src/outputs/MaterialPropertyDebugOutput.C
Expand Up @@ -49,7 +49,7 @@ MaterialPropertyDebugOutput::output(const ExecFlagType & /*type*/)
}

_console << "\n\nConsumed Material Properties:\n";
_console << std::setw(ConsoleUtils::console_field_width) << consumed.str() << '\n';
_console << std::setw(ConsoleUtils::console_field_width) << consumed.str() << std::endl;
}

void
Expand Down
8 changes: 4 additions & 4 deletions test/tests/postprocessors/perf_graph_data/perf_graph.i
Expand Up @@ -41,25 +41,25 @@
type = PerfGraphData
section_name = FEProblem::computeResidualInternal
data_type = CALLS
execute_on = 'INITIAL TIMESTEP_END'
execute_on = 'TIMESTEP_END'
[]
[self]
type = PerfGraphData
section_name = FEProblem::computeResidualInternal
data_type = SELF
execute_on = 'INITIAL TIMESTEP_END'
execute_on = 'TIMESTEP_END'
[]
[children]
type = PerfGraphData
section_name = FEProblem::computeResidualInternal
data_type = CHILDREN
execute_on = 'INITIAL TIMESTEP_END'
execute_on = 'TIMESTEP_END'
[]
[total]
type = PerfGraphData
section_name = FEProblem::computeResidualInternal
data_type = TOTAL
execute_on = 'INITIAL TIMESTEP_END'
execute_on = 'TIMESTEP_END'
[]
[]

Expand Down

0 comments on commit 5e07b5f

Please sign in to comment.