Skip to content

Commit a037294

Browse files
authored
Fix #101 (#102)
* Fix #101 * v0.8.11
1 parent 6924f86 commit a037294

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "FillArrays"
22
uuid = "1a297f60-69ca-5386-bcde-b61e274b549b"
3-
version = "0.8.10"
3+
version = "0.8.11"
44

55
[deps]
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

test/runtests.jl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -884,22 +884,22 @@ end
884884
a = randn(3)
885885
A = randn(1,4)
886886

887-
@test Fill(2,3)*A == Vector(Fill(2,3))*A
888-
@test Fill(2,3,1)*A == Matrix(Fill(2,3,1))*A
889-
@test Fill(2,3,3)*a == Matrix(Fill(2,3,3))*a
890-
@test Ones(3)*A == Vector(Ones(3))*A
891-
@test Ones(3,1)*A == Matrix(Ones(3,1))*A
892-
@test Ones(3,3)*a == Matrix(Ones(3,3))*a
887+
@test Fill(2,3)*A Vector(Fill(2,3))*A
888+
@test Fill(2,3,1)*A Matrix(Fill(2,3,1))*A
889+
@test Fill(2,3,3)*a Matrix(Fill(2,3,3))*a
890+
@test Ones(3)*A Vector(Ones(3))*A
891+
@test Ones(3,1)*A Matrix(Ones(3,1))*A
892+
@test Ones(3,3)*a Matrix(Ones(3,3))*a
893893
@test Zeros(3)*A Zeros(3,4)
894894
@test Zeros(3,1)*A == Zeros(3,4)
895895
@test Zeros(3,3)*a == Zeros(3)
896896

897-
@test A*Fill(2,4) == A*Vector(Fill(2,4))
898-
@test A*Fill(2,4,1) == A*Matrix(Fill(2,4,1))
899-
@test a*Fill(2,1,3) == a*Matrix(Fill(2,1,3))
900-
@test A*Ones(4) == A*Vector(Ones(4))
901-
@test A*Ones(4,1) == A*Matrix(Ones(4,1))
902-
@test a*Ones(1,3) == a*Matrix(Ones(1,3))
897+
@test A*Fill(2,4) A*Vector(Fill(2,4))
898+
@test A*Fill(2,4,1) A*Matrix(Fill(2,4,1))
899+
@test a*Fill(2,1,3) a*Matrix(Fill(2,1,3))
900+
@test A*Ones(4) A*Vector(Ones(4))
901+
@test A*Ones(4,1) A*Matrix(Ones(4,1))
902+
@test a*Ones(1,3) a*Matrix(Ones(1,3))
903903
@test A*Zeros(4) Zeros(1)
904904
@test A*Zeros(4,1) Zeros(1,1)
905905
@test a*Zeros(1,3) Zeros(3,3)

0 commit comments

Comments
 (0)