Skip to content

Commit

Permalink
a temp commit to test
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-godara committed Nov 21, 2021
1 parent a9a6288 commit 0bd66e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tests/stringlist/test_insert_at.f90
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
! SPDX-Identifier: MIT
module test_insert_at
use stdlib_error, only: check
use stdlib_string_type, only: string_type, operator(//), operator(==), char
use stdlib_string_type, only: string_type, operator(//), operator(==), char, operator(/=)
use stdlib_stringlist_type, only: stringlist_type, fidx, bidx, list_head, list_tail, operator(==)
use stdlib_strings, only: to_string
use stdlib_optval, only: optval
Expand Down Expand Up @@ -375,6 +375,7 @@ subroutine test_insert_at_same_list

do i = first, last
call work_list%insert_at( list_tail, string_type( to_string(i) ) )
call check(string_type( to_string(i) ) /= "", "There is something wrong with this")
end do
temp_list = work_list

Expand Down

0 comments on commit 0bd66e1

Please sign in to comment.