Skip to content

Commit

Permalink
fixed bug in test3
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Jun 22, 2024
1 parent c276c03 commit cc2badb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/csv_test3.f90
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ program csv_test3
do i = 1, size(header)
print "(*(g0))", ">"//trim(header(i))//"<"
end do
if (.not. all(header == ['x','y','z','t'])) error stop 'error reading header'
if (.not. all(header == ['x ','y ','z ','t ', 'int', 'str'])) error stop 'error reading header'

call f%get(1,col1,status_ok)
print "(*(g0))", "col1:"
Expand Down

0 comments on commit cc2badb

Please sign in to comment.