From cf7209c0121235eb869445aed09e8f53c011e326 Mon Sep 17 00:00:00 2001 From: "Kevin R. Thornton" Date: Fri, 19 May 2023 14:48:00 -0700 Subject: [PATCH] better test setup, now failing as expected --- src/genome_chunked_array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/genome_chunked_array.rs b/src/genome_chunked_array.rs index 44cd61f..ffd4d5b 100644 --- a/src/genome_chunked_array.rs +++ b/src/genome_chunked_array.rs @@ -754,6 +754,6 @@ mod tdd_crossover_semantics { &mut output, ); println!("{output:?}"); - assert_eq!(output, &[0, 3]); + assert_eq!(output, &[0, 3, 4]); } }