Skip to content

Commit

Permalink
temp commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-godara committed Oct 17, 2021
1 parent 890551a commit 690c89a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/stringlist/test_insert_at.f90
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ subroutine compare_list(list, first, last, call_number, from, to)
& call_number " // to_string( call_number ) )

j = merge(-1, 1, last < first)
do i = work_from, work_to
call check( list%get( fidx(i) ) == to_string( first + ( ( i - work_from ) * j ) ), &
do i = work_from + 1, work_to + 1
call check( list%get( fidx(i) ) == to_string( first + ( ( i - work_from + 1) * j ) ), &
& "compare_list: call_number " // to_string( call_number ) &
& // " fidx( " // to_string( i ) // " )" // char(list%get( fidx(i) )) )
& // " fidx( " // to_string( i ) // " )" // char(list%get( fidx(i) )) // "$" )

k = length - ( work_to - ( i - work_from ) ) + 1
call check( list%get( bidx(k) ) == &
Expand Down

0 comments on commit 690c89a

Please sign in to comment.