From acaca91bd32a99ba6e434ce9248b7b3f167bde96 Mon Sep 17 00:00:00 2001 From: Jeremy Woertink Date: Sun, 3 Nov 2024 07:45:56 -0800 Subject: [PATCH] Removing pretty_inspect since it doesn't seem to add any additional information to the error and it currently causes compilation errors on Windows. Fixes #1928 --- src/lucky/errors.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lucky/errors.cr b/src/lucky/errors.cr index 392089327..a33abd237 100644 --- a/src/lucky/errors.cr +++ b/src/lucky/errors.cr @@ -249,7 +249,7 @@ module Lucky "Expected request to have a subdomain but did not find one." else <<-MESSAGE - Expected subdomain matcher(s): #{@expected.pretty_inspect} + Expected subdomain matcher(s): #{@expected} Did not match host: #{@host} MESSAGE end