@@ -642,7 +642,7 @@ mod tdd_crossover_semantics {
642642 output. extend_from_slice ( & genome1[ p1..] ) ;
643643 }
644644
645- fn simple_merge_test_setup ( ) -> ( MutationChunks , Vec < Mutation > , HaploidGenomes ) {
645+ fn simple_merge_simple_test_setup ( ) -> ( MutationChunks , Vec < Mutation > , HaploidGenomes ) {
646646 let mut mutation_chunks = MutationChunks :: default ( ) ;
647647 let first = mutation_chunks. new_chunk ( ) ;
648648 let second = mutation_chunks. new_chunk ( ) ;
@@ -685,7 +685,7 @@ mod tdd_crossover_semantics {
685685
686686 #[ test]
687687 fn test_simple_merge_1 ( ) {
688- let ( mut mutation_chunks, mutations, haploid_genomes) = simple_merge_test_setup ( ) ;
688+ let ( mut mutation_chunks, mutations, haploid_genomes) = simple_merge_simple_test_setup ( ) ;
689689
690690 let breakpoint = Position :: try_from ( CHUNK_SIZE as i64 ) . unwrap ( ) ;
691691 let mut output = vec ! [ ] ;
@@ -702,7 +702,7 @@ mod tdd_crossover_semantics {
702702
703703 #[ test]
704704 fn test_simple_merge_2 ( ) {
705- let ( mut mutation_chunks, mutations, haploid_genomes) = simple_merge_test_setup ( ) ;
705+ let ( mut mutation_chunks, mutations, haploid_genomes) = simple_merge_simple_test_setup ( ) ;
706706 let breakpoint = Position :: try_from ( 2 * CHUNK_SIZE as i64 ) . unwrap ( ) ;
707707 let mut output = vec ! [ ] ;
708708 single_crossover (
@@ -719,7 +719,7 @@ mod tdd_crossover_semantics {
719719
720720 #[ test]
721721 fn test_simple_merge_3 ( ) {
722- let ( mut mutation_chunks, mutations, haploid_genomes) = simple_merge_test_setup ( ) ;
722+ let ( mut mutation_chunks, mutations, haploid_genomes) = simple_merge_simple_test_setup ( ) ;
723723 println ! ( "last..." ) ;
724724 let breakpoint = Position :: try_from ( 10 + CHUNK_SIZE as i64 ) . unwrap ( ) ;
725725 let mut output = vec ! [ ] ;
0 commit comments