Skip to content

Commit e292347

Browse files
ejovo13jvdp1
andauthored
Update src/tests/math/test_linspace.f90
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
1 parent f9a6623 commit e292347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/math/test_linspace.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ subroutine test_linspace_cmplx_3
202202

203203
z = linspace(start, end, n)
204204

205-
expected_interval =( end - start ) / ( n - 1 )
205+
expected_interval = ( end - start ) / ( n - 1 )
206206

207207
call check(z(1) == start, msg="Initial value of array is not equal to the passed start parameter", warn=warn)
208208
call check(z(n) == end, msg="Final array value is not equal to end parameter", warn=warn)

0 commit comments

Comments
 (0)