Skip to content

Commit e624a9f

Browse files
committed
Update workspace fymbols test
1 parent b957d6c commit e624a9f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/test_server.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ def check_return(result_array):
177177
objs = (
178178
["test", 6, 7],
179179
["test_abstract", 2, 0],
180+
["test_associate_block", 2, 0],
180181
["test_free", 2, 0],
181182
["test_gen_type", 5, 1],
182183
["test_generic", 2, 0],

test/test_source/hover/associate_block.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PROGRAM associate_block_test
1+
PROGRAM test_associate_block
22
IMPLICIT NONE
33
REAL :: A(5), B(5,5), C, III = 1
44
ASSOCIATE (X => A, Y => C)
@@ -10,4 +10,4 @@ PROGRAM associate_block_test
1010
ASSOCIATE (ARRAY => B(:,1))
1111
ARRAY (3) = ARRAY (1) + ARRAY (2)
1212
END ASSOCIATE
13-
END PROGRAM associate_block_test
13+
END PROGRAM test_associate_block

0 commit comments

Comments
 (0)