Skip to content

Commit 5fc4151

Browse files
authored
using instead of import in tests (#246)
1 parent 6e10fd9 commit 5fc4151

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

test/ETDRK4Test.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ApproxFunBase, Test
2-
import ApproxFunBase: expα, expβ, expγ
1+
using ApproxFunBase
2+
using Test
3+
using ApproxFunBase: expα, expβ, expγ
34

45
#
56
# This tests the numerical stability of the formulæ appearing in Eq. (2.5) of:

test/MatrixTest.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ApproxFunBase, Test
2-
import ApproxFunBase: Block
1+
using ApproxFunBase
2+
using Test
3+
using ApproxFunBase: Block
34

45

56
@testset "RaggedMatrix" begin

test/SpacesTest.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ApproxFunBase, Test
2-
import ApproxFunBase: PointSpace, HeavisideSpace, PiecewiseSegment, dimension, Vec, checkpoints
1+
using ApproxFunBase
2+
using Test
3+
using ApproxFunBase: PointSpace, HeavisideSpace, PiecewiseSegment, dimension, Vec, checkpoints
34
using StaticArrays
45
using BandedMatrices: rowrange, colrange, BandedMatrix
56
using LinearAlgebra

0 commit comments

Comments
 (0)