Skip to content

Commit 0807196

Browse files
committed
Renamed test.csv to avoid conflict with csv_test input
1 parent 7b5f563 commit 0807196

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tests/csv_read_test.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ program csv_read_test
1313
integer,dimension(:),allocatable :: itypes
1414

1515
! read the file
16-
call f%read('test.csv',header_row=1,status_ok=status_ok)
16+
call f%read('test_write.csv',header_row=1,status_ok=status_ok)
1717

1818
! get the header and type info
1919
call f%get_header(header,status_ok)

src/tests/csv_write_test.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ program csv_write_test
99
logical :: status_ok
1010

1111
! open the file
12-
call f%open('test.csv',n_cols=4,status_ok=status_ok)
12+
call f%open('test_write.csv',n_cols=4,status_ok=status_ok)
1313

1414
! add header
1515
call f%add(['x','y','z','t'])

0 commit comments

Comments
 (0)