Skip to content

Commit

Permalink
Fixed tests for negative exponents and unmarked them as broken
Browse files Browse the repository at this point in the history
  • Loading branch information
brainandforce committed Sep 11, 2024
1 parent 6592767 commit 280e688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ end
# The types of some of the results should change due to type stability considerations
let z
z = -1
@test_broken k^z === CliffordNumber(inv(k))
@test_broken l^z === EvenCliffordNumber(inv(l))
@test k^z === inv(CliffordNumber(k))
@test l^z === inv(EvenCliffordNumber(l))
@test m^z === inv(m)
z = 0
@test k^z === one(CliffordNumber(k))
Expand Down

0 comments on commit 280e688

Please sign in to comment.