From 86a85c0946587e177cd195d2897ebc98016dfbec Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 9 Feb 2021 23:27:00 -0700 Subject: [PATCH] Missed a method that should be private --- src/spectator/test_context.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spectator/test_context.cr b/src/spectator/test_context.cr index d56d817..0f83c60 100644 --- a/src/spectator/test_context.cr +++ b/src/spectator/test_context.cr @@ -33,7 +33,7 @@ class SpectatorTestContext < SpectatorContext # Initial tags for tests. # This method should be overridden by example groups and examples. - def self.tags + private def self.tags ::Spectator::Tags.new end end