Skip to content

Commit a40c765

Browse files
committed
Use import instead of using in runtests.jl
1 parent f5b5ad4 commit a40c765

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/runtests.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# This file is a part of ChangesOfVariables.jl, licensed under the MIT License (MIT).
22

3-
using ChangesOfVariables
4-
using Documenter
5-
using Test
3+
import Test
4+
import ChangesOfVariables
5+
import Documenter
66

77
Test.@testset "Package ChangesOfVariables" begin
88
include("test_with_ladj.jl")
99

1010
# doctests
11-
DocMeta.setdocmeta!(
11+
Documenter.DocMeta.setdocmeta!(
1212
ChangesOfVariables,
1313
:DocTestSetup,
1414
:(using ChangesOfVariables);
1515
recursive=true,
1616
)
17-
doctest(ChangesOfVariables)
17+
Documenter.doctest(ChangesOfVariables)
1818
end # testset

0 commit comments

Comments
 (0)