We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3e171b commit 2f4b90eCopy full SHA for 2f4b90e
Project.toml
@@ -1,6 +1,6 @@
1
name = "FillArrays"
2
uuid = "1a297f60-69ca-5386-bcde-b61e274b549b"
3
-version = "0.8"
+version = "0.8.1"
4
5
[deps]
6
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
test/runtests.jl
@@ -527,6 +527,12 @@ end
527
@test_throws DimensionMismatch (1:5) .* Ones{Int}(6)
528
@test_throws DimensionMismatch Ones{Int}(5) .* Ones{Int}(6)
529
end
530
+
531
+ @testset "Zeros -" begin
532
+ @test Zeros(10) - Zeros(10) ≡ Zeros(10)
533
+ @test Ones(10) - Zeros(10) ≡ Ones(10)
534
+ @test Fill(1,10) - Zeros(10) ≡ Fill(1.0,10)
535
+ end
536
537
538
@testset "Sub-arrays" begin
0 commit comments