From 8fdb79075babcb5a64900697a14a3a6c82f0e8b0 Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:42:18 +0100 Subject: [PATCH] Update test_chebyshev.jl --- test/test_chebyshev.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_chebyshev.jl b/test/test_chebyshev.jl index 9929264..34cef55 100644 --- a/test/test_chebyshev.jl +++ b/test/test_chebyshev.jl @@ -580,7 +580,7 @@ import BandedMatrices: isbanded end @testset "diff of truncation" begin - MemoryLayout(diff(ChebyshevT()[:,1:5]) * randn(5)) isa ExpansionLayout + @test MemoryLayout(diff(ChebyshevT()[:,1:5]) * randn(5)) isa ExpansionLayout end end @@ -619,4 +619,4 @@ end T = Chebyshev() @test blockaxes(T) == (blockaxes(T,1),blockaxes(T,2)) == (Block.(Base.OneTo(1)), Block.(Base.OneTo(1))) @test blockaxes(T,3) == Base.OneTo(1) -end \ No newline at end of file +end