Skip to content

Commit

Permalink
Merge pull request #1314 from robkeim/update-canonical-data
Browse files Browse the repository at this point in the history
Update canonical data to latest version
  • Loading branch information
ErikSchierboom authored Sep 5, 2019
2 parents 7adfa79 + 05ccfd3 commit 6850035
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion exercises/etl/EtlTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was auto-generated based on version 2.0.0 of the canonical data.
// This file was auto-generated based on version 2.0.1 of the canonical data.

using System.Collections.Generic;
using Xunit;
Expand Down
12 changes: 6 additions & 6 deletions exercises/matrix/MatrixTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was auto-generated based on version 1.1.0 of the canonical data.
// This file was auto-generated based on version 1.3.0 of the canonical data.

using Xunit;

Expand Down Expand Up @@ -26,10 +26,10 @@ public void Extract_row_where_numbers_have_different_widths()
}

[Fact(Skip = "Remove to run test")]
public void Can_extract_row_from_non_square_matrix()
public void Can_extract_row_from_non_square_matrix_with_no_corresponding_column()
{
var sut = new Matrix("1 2 3\n4 5 6\n7 8 9\n8 7 6");
Assert.Equal(new[] { 7, 8, 9 }, sut.Row(3));
Assert.Equal(new[] { 8, 7, 6 }, sut.Row(4));
}

[Fact(Skip = "Remove to run test")]
Expand All @@ -47,10 +47,10 @@ public void Can_extract_column()
}

[Fact(Skip = "Remove to run test")]
public void Can_extract_column_from_non_square_matrix()
public void Can_extract_column_from_non_square_matrix_with_no_corresponding_row()
{
var sut = new Matrix("1 2 3\n4 5 6\n7 8 9\n8 7 6");
Assert.Equal(new[] { 3, 6, 9, 6 }, sut.Column(3));
var sut = new Matrix("1 2 3 4\n5 6 7 8\n9 8 7 6");
Assert.Equal(new[] { 4, 8, 6 }, sut.Column(4));
}

[Fact(Skip = "Remove to run test")]
Expand Down

0 comments on commit 6850035

Please sign in to comment.