Skip to content

Commit 124af53

Browse files
committed
Fixes diagnostic error in unittest
Updates the solution with the number of references present for vector
1 parent f5fcee9 commit 124af53

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/test_server.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,6 @@ def find_in_results(uri, sline):
536536
[free_path, 18, 14, 20],
537537
[free_path, 36, 6, 12],
538538
[free_path, 44, 6, 12],
539-
[free_path, 50, 6, 12],
540539
[free_path, 78, 6, 12],
541540
),
542541
)

test/test_source/subdir/test_free.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ FUNCTION vector_norm(self) RESULT(norm)
4848
END FUNCTION vector_norm
4949
!> Doc 7
5050
SUBROUTINE scaled_vector_set(self, scale)
51-
CLASS(vector), INTENT(inout) :: self
51+
CLASS(scaled_vector), INTENT(inout) :: self
5252
REAL(8), INTENT(in) :: scale !< Doc 8
5353
self%scale%val = scale
5454
END SUBROUTINE scaled_vector_set

0 commit comments

Comments
 (0)