1- // This file was auto-generated based on version 1.1 .0 of the canonical data.
1+ // This file was auto-generated based on version 1.3 .0 of the canonical data.
22
33using Xunit ;
44
@@ -26,10 +26,10 @@ public void Extract_row_where_numbers_have_different_widths()
2626 }
2727
2828 [ Fact ( Skip = "Remove to run test" ) ]
29- public void Can_extract_row_from_non_square_matrix ( )
29+ public void Can_extract_row_from_non_square_matrix_with_no_corresponding_column ( )
3030 {
3131 var sut = new Matrix ( "1 2 3\n 4 5 6\n 7 8 9\n 8 7 6" ) ;
32- Assert . Equal ( new [ ] { 7 , 8 , 9 } , sut . Row ( 3 ) ) ;
32+ Assert . Equal ( new [ ] { 8 , 7 , 6 } , sut . Row ( 4 ) ) ;
3333 }
3434
3535 [ Fact ( Skip = "Remove to run test" ) ]
@@ -47,10 +47,10 @@ public void Can_extract_column()
4747 }
4848
4949 [ Fact ( Skip = "Remove to run test" ) ]
50- public void Can_extract_column_from_non_square_matrix ( )
50+ public void Can_extract_column_from_non_square_matrix_with_no_corresponding_row ( )
5151 {
52- var sut = new Matrix ( "1 2 3\n 4 5 6 \n 7 8 9 \n 8 7 6" ) ;
53- Assert . Equal ( new [ ] { 3 , 6 , 9 , 6 } , sut . Column ( 3 ) ) ;
52+ var sut = new Matrix ( "1 2 3 4 \n 5 6 7 8 \n 9 8 7 6" ) ;
53+ Assert . Equal ( new [ ] { 4 , 8 , 6 } , sut . Column ( 4 ) ) ;
5454 }
5555
5656 [ Fact ( Skip = "Remove to run test" ) ]
0 commit comments