Skip to content

Commit 3f5068e

Browse files
committed
Small fix to tests
1 parent 9f47395 commit 3f5068e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

test/test_io_hdf5.f90

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ program test_io_hdf5
99
character(:), allocatable :: attr
1010
character(*), parameter :: test_data_path = 'keras_dense_mnist.h5'
1111
logical :: file_exists
12-
logical :: ok
13-
14-
print *, keras_model_dense_mnist_url
12+
logical :: ok = .true.
1513

1614
inquire(file=test_data_path, exist=file_exists)
1715
if (.not. file_exists) call download_and_unpack(keras_model_dense_mnist_url)

test/test_parse_keras_model.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ program test_parse_keras_model
1515
logical :: found
1616
integer :: n, num_layers
1717
logical :: file_exists
18-
logical :: ok
18+
logical :: ok = .true.
1919

2020
inquire(file=test_data_path, exist=file_exists)
2121
if (.not. file_exists) call download_and_unpack(keras_model_dense_mnist_url)

0 commit comments

Comments
 (0)