From 4f842cca49f93329ff243ee3f5f40ac1f4bfdb03 Mon Sep 17 00:00:00 2001 From: Massimiliano Fasi Date: Thu, 10 Oct 2024 12:04:27 +0100 Subject: [PATCH] test(matrices): add coverage for new Chow constructor --- test/matrices/chow.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/matrices/chow.jl b/test/matrices/chow.jl index af237f8..f2e3b95 100644 --- a/test/matrices/chow.jl +++ b/test/matrices/chow.jl @@ -7,7 +7,7 @@ ]) # linear algebra functions -run_test_linear_algebra_functions([Chow.(1:5); Chow.(1:5, 2, 3)]) +run_test_linear_algebra_functions([Chow.(1:5); Chow.(1:5, 2, 3), Chow.(1:5, 1.1, 3)]) # eltype @test test_matrix_elements(Chow{Int32}(5))