Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix source typos in tests/ #14200

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/parameter_handler/parameter_handler_25.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fail()
try
{
prm.enter_subsection("General");
prm.set("Precison", "float"); // here is a typo!
prm.set("Precision", "float"); // here is a typo!
// dim is not set!
prm.leave_subsection();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/parameter_handler/parameter_handler_25.output
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An error occurred in file <parameter_handler.cc> in function
The violated condition was:
false
Additional information:
You can't ask for entry <Precison> you have not yet declared.
You can't ask for entry <Precision> you have not yet declared.
--------------------------------------------------------

DEAL::
Expand Down
2 changes: 1 addition & 1 deletion tests/parameter_handler/parameter_handler_25.output.gcc-12
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An error occurred in file <parameter_handler.cc> in function
The violated condition was:
false
Additional information:
You can't ask for entry <Precison> you have not yet declared.
You can't ask for entry <Precision> you have not yet declared.
--------------------------------------------------------

DEAL::
Expand Down
2 changes: 1 addition & 1 deletion tests/parameter_handler/parameter_handler_25.output.std
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An error occurred in file <parameter_handler.cc> in function
The violated condition was:
false
Additional information:
You can't ask for entry <Precison> you have not yet declared.
You can't ask for entry <Precision> you have not yet declared.
--------------------------------------------------------

DEAL::
Expand Down
2 changes: 1 addition & 1 deletion tests/parameter_handler/parameter_handler_25.output2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An error occurred in file <parameter_handler.cc> in function
The violated condition was:
false
Additional information:
You can't ask for entry <Precison> you have not yet declared.
You can't ask for entry <Precision> you have not yet declared.
--------------------------------------------------------

DEAL::
Expand Down
2 changes: 1 addition & 1 deletion tests/parameter_handler/prm/parameter_handler_26_fail.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"General": {
"Precison": "float"
"Precision": "float"
}
}
2 changes: 1 addition & 1 deletion tests/parameter_handler/prm/parameter_handler_26_fail.prm
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
subsection General
set Precison = float
set Precision = float
end