Skip to content

Commit 5ae91ef

Browse files
committed
Wrong type for element stiffness in test
1 parent 2f04739 commit 5ae91ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test_assemble.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ import LinearAlgebra: Symmetric
9090
# SparseMatrix assembler
9191
K = spzeros(T, 10, 10)
9292
f = zeros(T, 10)
93-
ke = [rand(T, 4, 4), rand(4, 4)]
94-
fe = [rand(T, 4), rand(4)]
93+
ke = [rand(T, 4, 4), rand(T, 4, 4)]
94+
fe = [rand(T, 4), rand(T, 4)]
9595
dofs = [[1, 5, 3, 7], [10, 8, 2, 5]]
9696
for i in 1:2
9797
K[dofs[i], dofs[i]] += ke[i]

0 commit comments

Comments
 (0)