Skip to content

Commit 6850035

Browse files
Merge pull request #1314 from robkeim/update-canonical-data
Update canonical data to latest version
2 parents 7adfa79 + 05ccfd3 commit 6850035

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

exercises/etl/EtlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was auto-generated based on version 2.0.0 of the canonical data.
1+
// This file was auto-generated based on version 2.0.1 of the canonical data.
22

33
using System.Collections.Generic;
44
using Xunit;

exercises/matrix/MatrixTest.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

33
using 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\n4 5 6\n7 8 9\n8 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\n4 5 6\n7 8 9\n8 7 6");
53-
Assert.Equal(new[] { 3, 6, 9, 6 }, sut.Column(3));
52+
var sut = new Matrix("1 2 3 4\n5 6 7 8\n9 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

Comments
 (0)