From 6a40de1b8a2479db3828b2a64834ac158d6cf4d0 Mon Sep 17 00:00:00 2001 From: Oleh Prypin Date: Thu, 6 Feb 2020 00:30:15 +0100 Subject: [PATCH] fixup! Enable String specs on win32 --- spec/std/string_spec.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/std/string_spec.cr b/spec/std/string_spec.cr index 98d2f3f7f199..c3ca5ab19c47 100644 --- a/spec/std/string_spec.cr +++ b/spec/std/string_spec.cr @@ -1100,11 +1100,11 @@ describe "String" do "foobar".reverse.should eq("raboof") end - pending_win32 "reverses utf-8 string" do + it "reverses utf-8 string" do "こんいちは".reverse.should eq("はちいんこ") end - pending_win32 "reverses taking grapheme clusters into account" do + it "reverses taking grapheme clusters into account" do "noël".reverse.should eq("lëon") end