Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 4a40252

Browse files
07 fixed
1 parent 6ad7ce5 commit 4a40252

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/derivative_operators_interface.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ end
9393
N = 10
9494
srand(0); LA = DiffEqArrayOperator(rand(N,N))
9595
LD = DerivativeOperator{Float64}(2,2,1.0,N,:Dirichlet0,:Dirichlet0)
96-
@test_broken begin L = 1.1*LA - 2.2*LD + 3.3*I
96+
@test_broken begin
97+
L = 1.1*LA - 2.2*LD + 3.3*I
9798
# Builds full(L) the brute-force way
9899
fullL = zeros(N,N)
99100
v = zeros(N)

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using DiffEqOperators, LinearAlgebra
22
using Test
3-
using SpecialMatrices, SpecialFunctions
3+
using SpecialMatrices
44

55
tic()
66
@time @testset "Array Operators Interface" begin include("array_operators_interface.jl") end

0 commit comments

Comments
 (0)