From 07da160de66426853e53984371f7980a66cdab58 Mon Sep 17 00:00:00 2001 From: odow Date: Mon, 25 Mar 2024 11:12:48 +1300 Subject: [PATCH] Update --- test/matmul.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/matmul.jl b/test/matmul.jl index 86eb619..4993264 100644 --- a/test/matmul.jl +++ b/test/matmul.jl @@ -219,11 +219,11 @@ end BigInt[1 1; 1 1], zeros(BigInt, 1, 1), ) - @test_throws DimensionMismatch MA.mul_to!!( + @test MA.mul_to!!( zeros(BigInt, 1, 1), BigInt[1 1; 1 1], zeros(BigInt, 2, 1), - ) + ) == zeros(BigInt, 2, 1) @testset "mutability" begin alloc_test(() -> MA.promote_operation(*, typeof(A), typeof(B)), 0)