From b39bd09eaa21ce180e49da69923e803d141780b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sat, 30 Sep 2023 17:55:04 +0200 Subject: [PATCH] =?UTF-8?q?chore:=E2=80=AFswap=20test=20names?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nalgebra-sparse/tests/unit_tests/coo.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nalgebra-sparse/tests/unit_tests/coo.rs b/nalgebra-sparse/tests/unit_tests/coo.rs index 57f5818d..c3702c49 100644 --- a/nalgebra-sparse/tests/unit_tests/coo.rs +++ b/nalgebra-sparse/tests/unit_tests/coo.rs @@ -185,8 +185,8 @@ fn coo_try_from_triplets_reports_out_of_bounds_indices() { } #[test] -fn coo_try_from_triplets_panics_on_mismatched_vectors() { - // Check that try_from_triplets panics when the triplet vectors have different lengths +fn coo_try_from_triplets_iter() { + // Check that try_from_triplets_iter panics when the triplet vectors have different lengths macro_rules! assert_errs { ($result:expr) => { assert!(matches!( @@ -210,7 +210,7 @@ fn coo_try_from_triplets_panics_on_mismatched_vectors() { } #[test] -fn coo_try_from_triplets_iter() { +fn coo_try_from_triplets_panics_on_mismatched_vectors() { // Check that try_from_triplets panics when the triplet vectors have different lengths macro_rules! assert_errs { ($result:expr) => {