Skip to content

Commit ac8eb28

Browse files
committed
fix(test_diagnosis_test): define procedure pointer
1 parent 5c4127c commit ac8eb28

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

test/test_diagnosis_test_m.F90

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ function results() result(test_results)
5252
procedure(diagnosis_function_i), pointer :: check_real_approximates_ptr, check_double_approximates_ptr, check_integer_equals_ptr
5353
check_real_approximates_ptr => check_real_approximates
5454
check_double_approximates_ptr => check_double_approximates
55+
check_integer_equals_ptr => check_integer_equals
5556

5657
descriptions = [ &
57-
test_description_t("contruction from a real expression of the form 'x .approximates. y .within. tolerance'", check_real_approximates_ptr) &
58-
,test_description_t("contruction from a double-precision expression of the form 'x .approximates. y .within. tolerance'", check_double_approximates_ptr) &
59-
,test_description_t("contruction from an integer expression of the form 'i .equalsExpected. j", check_integer_equals_ptr) &
58+
test_description_t("contruction from a real expression of the form `x .approximates. y .within. tolerance`", check_real_approximates_ptr) &
59+
,test_description_t("contruction from a double-precision expression of the form `x .approximates. y .within. tolerance`", check_double_approximates_ptr) &
60+
,test_description_t("contruction from an integer expression of the form `i .equalsExpected. j`", check_integer_equals_ptr) &
6061
]
6162
#endif
6263

0 commit comments

Comments
 (0)