Skip to content

Commit f83caed

Browse files
committed
Renamed test.csv to avoid conflict with csv_test input
from: 0807196
1 parent d1c0138 commit f83caed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/csv_test.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ subroutine csv_write_test()
134134
write(*,*) ''
135135

136136
! open the file
137-
call f%open('test.csv',n_cols=4,status_ok=status_ok)
137+
call f%open('test_write.csv',n_cols=4,status_ok=status_ok)
138138
if (status_ok) then
139139

140140
! add header
@@ -176,7 +176,7 @@ subroutine csv_read_test()
176176
write(*,*) ''
177177

178178
! read the file
179-
call f%read('test.csv',header_row=1,status_ok=status_ok)
179+
call f%read('test_write.csv',header_row=1,status_ok=status_ok)
180180

181181
if (status_ok) then
182182

0 commit comments

Comments
 (0)