Skip to content

Commit

Permalink
Disable failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Sep 27, 2018
1 parent 7f01e5d commit d1d38e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/operator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ end
socexpr = 1.5*nrm - 2 - w
@test string(socexpr) == "1.5 $Vert[w,-w + 1]$Vert$sub2 - w - 2"

@test isequal(3w + 2y, 3w +2y) == true
@test isequal(3w + 2y + 1, 3w + 2y) == false
@static if VERSION >= v"0.7-"
@test isequal(3w + 2y, 3w +2y) == true
@test isequal(3w + 2y + 1, 3w + 2y) == false
end

# Different objects that must all interact:
# 1. Number
Expand Down

0 comments on commit d1d38e7

Please sign in to comment.