diff --git a/test/apilock.jl b/test/apilock.jl index 2538bb66..7e1cd08d 100644 --- a/test/apilock.jl +++ b/test/apilock.jl @@ -1,10 +1,12 @@ using Pkg, Test @testset "issue1179" begin @test try - run(`$(Base.julia_cmd()) --project=$(dirname(Pkg.project().path)) -t 6 $(joinpath(@__DIR__, "issue1179.jl"))`) + run( + `$(Base.julia_cmd()) --project=$(dirname(Pkg.project().path)) -t 6 $(joinpath(@__DIR__, "issue1179.jl"))` + ) true catch err @info err false end -end \ No newline at end of file +end diff --git a/test/issue1179.jl b/test/issue1179.jl index 8b740281..28bd91a7 100644 --- a/test/issue1179.jl +++ b/test/issue1179.jl @@ -7,7 +7,7 @@ Threads.@threads for i in 1:Threads.nthreads() h5open("file$i.hdf5", "w") do h5 d = create_dataset(h5, "rand", T, sizes) for n in 1:sizes[3] - d[:,:,n] = rand(T, sizes[1:2]) + d[:, :, n] = rand(T, sizes[1:2]) end end -end \ No newline at end of file +end