Skip to content

Commit b0f4377

Browse files
lostellamohamed82008
authored andcommitted
added usings to further make tests independent
1 parent ed830ae commit b0f4377

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

test/cg.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ using LinearMaps
33
using Test
44
using LinearAlgebra
55
using SparseArrays
6+
using Random
67

78
import LinearAlgebra.ldiv!
89

test/gmres.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ using Test
33
using LinearMaps
44
using LinearAlgebra
55
using Random
6+
using SparseArrays
67

78
#GMRES
89
@testset "GMRES" begin

test/minres.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
using IterativeSolvers
22
using Test
3+
using Random
4+
using SparseArrays
5+
using LinearAlgebra
36
using LinearMaps
47

58
@testset "MINRES" begin
@@ -64,4 +67,4 @@ end
6467
@test hist.isconverged
6568
end
6669

67-
end
70+
end

0 commit comments

Comments
 (0)