We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c0138 commit f83caedCopy full SHA for f83caed
src/tests/csv_test.f90
@@ -134,7 +134,7 @@ subroutine csv_write_test()
134
write(*,*) ''
135
136
! open the file
137
- call f%open('test.csv',n_cols=4,status_ok=status_ok)
+ call f%open('test_write.csv',n_cols=4,status_ok=status_ok)
138
if (status_ok) then
139
140
! add header
@@ -176,7 +176,7 @@ subroutine csv_read_test()
176
177
178
! read the file
179
- call f%read('test.csv',header_row=1,status_ok=status_ok)
+ call f%read('test_write.csv',header_row=1,status_ok=status_ok)
180
181
182
0 commit comments