Skip to content

Commit 436bc95

Browse files
authored
Remove Unicode test from series exercise to be consistent with instructions (#1567)
1 parent 22afebe commit 436bc95

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

exercises/practice/series/test/string_series_test.exs

-6
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ defmodule StringSeriesTest do
6565
assert StringSeries.slices("01234", 5) == ["01234"]
6666
end
6767

68-
@tag :pending
69-
test "Unicode characters count as a single character" do
70-
assert StringSeries.slices("José", 1) == ["J", "o", "s", "é"]
71-
assert StringSeries.slices("José", 2) == ["Jo", "os", "sé"]
72-
end
73-
7468
@tag :pending
7569
test "slices with size longer than string return empty list" do
7670
assert StringSeries.slices("01234", 6) == []

0 commit comments

Comments
 (0)