From 5607fe69ce631569bed96376cc5f36654f95fcce Mon Sep 17 00:00:00 2001 From: Jeremy Woertink Date: Sun, 3 Nov 2024 07:50:25 -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 (#1929) --- 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