Skip to content

Commit 68d8d1f

Browse files
authored
fix whitespace (#795)
1 parent 21807e7 commit 68d8d1f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/ExtrasTest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ import ApproxFun: eigs
6969
A = transport_*Derivative(d) + damping
7070
P = -DefiniteIntegral(Chebyshev(d))[LowRankFun((x,y)->gp(x)*(y+f(y)),d^2)];
7171
λ,V = eigs(A,100)
72-
@test norm(sort(real(filter(x->isreal(x),λ)))[1:5]-(0:4))  100000eps()
72+
@test norm(sort(real(filter(x->isreal(x),λ)))[1:5]-(0:4)) 100000eps()
7373

7474
λ,V = eigs(A+P,100)
7575
@test sort(real(filter(x->isreal(x),λ)))[5] 3.93759261234502 atol=1E-3

test/ReadmeTest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ using ApproxFun, SpecialFunctions, LinearAlgebra, Test
6868
N=u->[u(-1.)-1.,u(1.)+0.5,0.001u''+6*(1-x^2)*u'+u^2-1.]
6969
u=newton(N,u0)
7070

71-
@test norm(N(u)[end])  1000eps()
71+
@test norm(N(u)[end]) 1000eps()
7272
end
7373

7474

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ end
136136
f = Fun(t->exp(sin(10t)), s)
137137
@time uFourier = L\f
138138

139-
@test norm(uFourier-uChebyshev)  100eps()
139+
@test norm(uFourier-uChebyshev) 100eps()
140140
end
141141

142142
@testset "Conversion" begin

0 commit comments

Comments
 (0)