Skip to content

Commit

Permalink
comment out a test that relies on #14425
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Sep 13, 2016
1 parent a5bc279 commit bff7011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/linalg/generic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ b = randn(Base.LinAlg.SCAL_CUTOFF) # make sure we try BLAS path
# test scale and scale! for non-commutative multiplication
q = Quaternion(0.44567, 0.755871, 0.882548, 0.423612)
qmat = [Quaternion(0.015007, 0.355067, 0.418645, 0.318373)]
@test scale!(q, copy(qmat)) != scale!(copy(qmat), q)
#@test scale!(q, copy(qmat)) != scale!(copy(qmat), q) #uncomment if #14425 gets backported
## Test * because it doesn't dispatch to scale!
@test q*qmat != qmat*q
@test conj(q*qmat) conj(qmat)*conj(q)
Expand Down

0 comments on commit bff7011

Please sign in to comment.