Skip to content

Commit 09e333f

Browse files
committed
Correct error in fypp templating
1 parent 58fc9a2 commit 09e333f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tests/linalg/test_linalg_matrix_property_checks.fypp

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ contains
3737
type(unittest_type), allocatable, intent(out) :: testsuite(:)
3838

3939

40-
#:set IMPLEMENTED_TESTS = ['is_square','is_diagonal','is_symmetric','is_skew_symmetric' &
41-
'is_hermitian']
40+
#:set IMPLEMENTED_TESTS = ['is_square','is_diagonal','is_symmetric','is_skew_symmetric', &
41+
'is_hermitian', 'is_triangular', 'is_hessenberg']
4242

4343
#:set NUM_TESTS = int(len(IMPLEMENTED_TESTS)*len(RCI_KINDS_TYPES_SUFFIXES))
4444

@@ -51,9 +51,9 @@ contains
5151
#:set TESTS_WRITTEN = TESTS_WRITTEN + 1
5252
#! last test in list should not have comma
5353
#:if TESTS_WRITTEN < NUM_TESTS
54-
new_unittest("${cur_test}$_${s1}$", test_is_square_rsp), &
54+
new_unittest("${cur_test}$_${s1}$", test_${cur_test}$_${s1}$), &
5555
#:else
56-
new_unittest("${cur_test}$_${s1}$", test_is_square_rsp) &
56+
new_unittest("${cur_test}$_${s1}$", test_${cur_test}$_${s1}$) &
5757
#:endif
5858
#:endfor
5959
#:endfor

0 commit comments

Comments
 (0)