Skip to content

Commit a642feb

Browse files
committed
reduce size of matrix used for testing to reduce test time
1 parent fb7fb25 commit a642feb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/test/uniformscaling.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ end
2525

2626
@testset "sqrt, exp, log, and trigonometric functions" begin
2727
# convert to a dense matrix with random size
28-
M(J) = (N = rand(1:0x678); Matrix(J, N, N))
28+
M(J) = (N = rand(1:10); Matrix(J, N, N))
2929

3030
# on complex plane
3131
J = UniformScaling(randn(ComplexF64))

0 commit comments

Comments
 (0)