Skip to content

Commit

Permalink
Remove unsupported 1.6 string syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lkdvos committed Sep 29, 2023
1 parent e720617 commit ed76303
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/spaces.jl
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ println("------------------------------------")
@test @constinferred(oneunit(V)) == W == oneunit(typeof(V))
@test @constinferred((V, V)) ==^(2d)
@test_throws SpaceMismatch ((V, V'))
@test_throws "promotion of types $(typeof(ℝ^d)) and $(typeof(ℂ^d)) \
failed to change any arguments" ((ℝ^d,^d))
@test_throws "promotion of types $(typeof(ℝ^d)) and $(typeof(ℂ^d)) \
failed to change any arguments" ((ℝ^d,^d))
@test_throws "promotion of types $(typeof(ℝ^d)) and $(typeof(ℂ^d)) failed to change any arguments" ((ℝ^d,
^d))
@test_throws "promotion of types $(typeof(ℝ^d)) and $(typeof(ℂ^d)) failed to change any arguments" ((ℝ^d,
^d))
@test @constinferred((V, V)) ==^(2d)
@test @constinferred((V, oneunit(V))) ==^(d + 1)
@test @constinferred((V, V, V, V)) ==^(4d)
Expand Down

0 comments on commit ed76303

Please sign in to comment.