Skip to content

Commit 663514f

Browse files
authored
fix whitespace (#294)
1 parent 7315691 commit 663514f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

test/test_banded.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ Base.similar(::MyMatrix, ::Type{T}, m::Int, n::Int) where T = MyMatrix{T}(undef,
293293
@test @inferred(convert(BandedMatrix, banded)) === banded
294294
end
295295

296-
# Note: @inferred convert(MyMatrix, matrix) throws
296+
# Note: @inferred convert(MyMatrix, matrix) throws
297297
banded = convert(BandedMatrix{Int64, MyMatrix}, matrix)
298298
@test banded isa BandedMatrix{Int64, MyMatrix{Int64}}
299299
@test banded == matrix

test/test_bandedlu.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct _foo <: Number end
3131
bf = copy(b)
3232
L,U,p = lu(A)
3333
Lf,Uf,pf = lu(Af)
34-
@test L Lf # storage format is different
34+
@test L Lf # storage format is different
3535
@test U Uf
3636
@test p pf
3737
lua = lu(A)

test/test_bandedqr.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ Random.seed!(0)
9393
@test qr(V).τ LinearAlgebra.qrfactUnblocked!(Matrix(V)).τ
9494
@test Matrix(qr(V).Q) Matrix(qr(Matrix(V)).Q)
9595
@test Matrix(qr(V)) V
96-
B = BandedMatrix(A,(1,2)) # pad
96+
B = BandedMatrix(A,(1,2)) # pad
9797
V = view(copy(B),1:5,1:6)
9898
@test qr!(V) isa QR{Float64,<:SubArray{Float64,2,<:BandedMatrix{Float64}}}
9999
τ = Array{Float64}(undef,100)
100-
B = BandedMatrix(A,(1,2)) # pad
100+
B = BandedMatrix(A,(1,2)) # pad
101101
V = view(B,1:6,1:5)
102102
F1 = qr(V)
103103
F2 = banded_qr!(V, view(τ,1:size(V,2)))

test/test_symbanded.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ end
198198
@test x y
199199
@test_throws DimensionMismatch F\[b;b]
200200

201-
T  Float16 && (@test det(F) det(SAL))
201+
T Float16 && (@test det(F) det(SAL))
202202
end
203203
for T in (Int16, Int32, Int64, BigInt)
204204
A = BandedMatrix{T}(undef, (4,4), (1,1))

0 commit comments

Comments
 (0)