From b0562981f7a4c9126f26d236ce727420af563d8f Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 12 Nov 2019 21:54:55 -0700 Subject: [PATCH] Change double name to string --- src/spectator/mocks/double.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spectator/mocks/double.cr b/src/spectator/mocks/double.cr index d546b37..4af8cf1 100644 --- a/src/spectator/mocks/double.cr +++ b/src/spectator/mocks/double.cr @@ -4,7 +4,7 @@ require "./unexpected_message_error" module Spectator::Mocks abstract class Double - def initialize(@spectator_double_name : Symbol, @null = false) + def initialize(@spectator_double_name : String, @null = false) end private macro stub(definition, &block)