From a08c87dd5ddd489a0939844fb705f3c18f7e4ade Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 12 Sep 2020 15:28:55 -0600 Subject: [PATCH] Remove workaround https://github.com/icy-arctic-fox/spectator/issues/1 should be resolved by https://github.com/crystal-lang/crystal/pull/8234 --- src/spectator/includes.cr | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/spectator/includes.cr b/src/spectator/includes.cr index 4425f99..894a045 100644 --- a/src/spectator/includes.cr +++ b/src/spectator/includes.cr @@ -4,12 +4,6 @@ # Including all files with a wildcard would accidentally enable should-syntax. # Unfortunately, that leads to the existence of this file to include everything but that file. -# FIXME: Temporary (hopefully) require statement to workaround Crystal issue #7060. -# https://github.com/crystal-lang/crystal/issues/7060 -# The primary issue seems to be around OpenSSL. -# By explicitly including it before Spectator functionality, we workaround the issue. -require "openssl" - # First the sub-modules. require "./dsl" require "./expectations"