Skip to content

Commit

Permalink
a test and a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed Mar 22, 2021
1 parent 2fa482d commit 5027f12
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/fixed_rank.jl
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,10 @@ include("utils.jl")
# broadcasting
@test axes(w) === ()
wc = copy(w)
# test that the copy is equal to the original, but represented by
# a new array
@test wc.U !== w.U
@test wc.U == w.U
wb = w .+ v .* 2
@test wb isa UMVTVector
@test wb == w + v * 2
Expand Down

0 comments on commit 5027f12

Please sign in to comment.