Skip to content

Commit

Permalink
Fixing validParams in ReadDoubleIndex class
Browse files Browse the repository at this point in the history
Need to get params from GeneralUserObject not just UserObject.
  • Loading branch information
andrsd committed Jul 11, 2018
1 parent d1b1644 commit b57a662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/userobjects/ReadDoubleIndex.C
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ template <>
InputParameters
validParams<ReadDoubleIndex>()
{
InputParameters params = validParams<UserObject>();
InputParameters params = validParams<GeneralUserObject>();
params.addRequiredParam<std::vector<std::vector<Real>>>("real_di",
"A double index field of real numbers.");
params.addRequiredParam<std::vector<std::vector<unsigned int>>>(
Expand Down

0 comments on commit b57a662

Please sign in to comment.