Skip to content

Commit

Permalink
Merge pull request #1047 from Antoinemarteau/update-ci
Browse files Browse the repository at this point in the history
Update ci
  • Loading branch information
JordiManyer authored Nov 7, 2024
2 parents e0be5c8 + 0812401 commit 217b95a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TensorValuesTests/TypesTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,11 @@ q = SymTracelessTensorValue{0,Int}()

q = SymTracelessTensorValue{1,Int}( () )
@test isa(q,SymTracelessTensorValue{1,Int})
@test convert(SMatrix{1,1,Int},q) == [0;;]
@test convert(SMatrix{1,1,Int},q) == zeros(Int,1,1)

q = SymTracelessTensorValue{1,Int}()
@test isa(q,SymTracelessTensorValue{1,Int})
@test convert(SMatrix{1,1,Int},q) == [0;;]
@test convert(SMatrix{1,1,Int},q) == zeros(Int,1,1)

q = SymTracelessTensorValue(11,21.0)
@test isa(q,SymTracelessTensorValue{2,Float64})
Expand Down

0 comments on commit 217b95a

Please sign in to comment.