Skip to content

Commit 237d4a3

Browse files
committed
Fix test
1 parent 26e61cd commit 237d4a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pde.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using ModelingToolkit, DiffEqBase, LinearAlgebra
33
# Define some variables
44
@parameters t x
55
@variables u(..)
6-
D = Differential(t)
6+
Dt = Differential(t)
77
Dxx = Differential(x)^2
88
eq = Dt(u(t,x)) ~ Dxx(u(t,x))
99
bcs = [u(0,x) ~ - x * (x-1) * sin(x),

0 commit comments

Comments
 (0)