Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion exercises/isogram/IsogramTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was auto-generated based on version 1.3.0 of the canonical data.
// This file was auto-generated based on version 1.4.0 of the canonical data.

using Xunit;

Expand All @@ -22,6 +22,12 @@ public void Word_with_one_duplicated_character()
Assert.False(Isogram.IsIsogram("eleven"));
}

[Fact(Skip = "Remove to run test")]
public void Word_with_one_duplicated_character_from_the_end_of_the_alphabet()
{
Assert.False(Isogram.IsIsogram("zzyzx"));
}

[Fact(Skip = "Remove to run test")]
public void Longest_reported_english_isogram()
{
Expand Down
12 changes: 1 addition & 11 deletions exercises/series/SeriesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,7 @@ public void Slices_can_include_duplicates()
[Fact(Skip = "Remove to run test")]
public void Slices_of_a_long_series()
{
var expected = new[]
{
"91849",
"18493",
"84939",
"49390",
"93904",
"39042",
"90424",
"04243"
};
var expected = new[] { "91849", "18493", "84939", "49390", "93904", "39042", "90424", "04243" };
Assert.Equal(expected, Series.Slices("918493904243", 5));
}

Expand Down