Skip to content

Commit

Permalink
replace rand array by a fixed one in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub committed May 24, 2023
1 parent 221c437 commit e1acc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ end
@test_throws BoundsError Base.setindex(Zeros(5), 2, 6)

@testset "matmul" begin
A = rand(3,3)
A = reshape(Float64[1:9;], 3, 3)
@testset "vector" begin
w = zeros(size(A,1))
w2 = MVector{length(w)}(w)
Expand Down

0 comments on commit e1acc95

Please sign in to comment.