Skip to content

Commit 9fa800c

Browse files
authored
getline -> get_line in tests (#151)
1 parent 80d0385 commit 9fa800c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tutorial/dependencies/test/main.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module test_demo
22
use demo, only : substitute
3-
use stdlib_io, only : getline
3+
use stdlib_io, only : get_line
44
use testdrive, only : error_type, unittest_type, new_unittest, check
55
implicit none
66
private
@@ -32,7 +32,7 @@ subroutine test_substitute(error)
3232
close(input)
3333

3434
rewind(output)
35-
call getline(output, line, stat)
35+
call get_line(output, line, stat)
3636
close(output)
3737

3838
call check(error, line, "This is a valid example")

0 commit comments

Comments
 (0)