Skip to content

Commit 7e0e5f7

Browse files
committed
Replace imports from Main
1 parent ead3e8a commit 7e0e5f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/adjtrans.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ const BASE_TEST_PATH = joinpath(dirname(pathof(LinearAlgebra)), "..", "test")
1010
const TESTHELPERS = joinpath(BASE_TEST_PATH, "testhelpers")
1111

1212
include(joinpath(TESTHELPERS, "OffsetArrays.jl"))
13-
using .Main.OffsetArrays
13+
using .OffsetArrays
1414

1515
include(joinpath(TESTHELPERS, "ImmutableArrays.jl"))
16-
using .Main.ImmutableArrays
16+
using .ImmutableArrays
1717

1818
@testset "Adjoint and Transpose inner constructor basics" begin
1919
intvec, intmat = [1, 2], [1 2; 3 4]

test/bidiag.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ include(joinpath(TESTHELPERS, "SizedArrays.jl"))
2626
using .SizedArrays
2727

2828
include(joinpath(TESTHELPERS, "ImmutableArrays.jl"))
29-
using .Main.ImmutableArrays
29+
using .ImmutableArrays
3030

3131
include("testutils.jl") # test_approx_eq_modphase
3232

0 commit comments

Comments
 (0)