From dd2020bc9a85e618a1a16356da576d257c489aa3 Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Fri, 27 Sep 2024 22:07:16 -0700 Subject: [PATCH] Make Atlas::Command::Base#content raise error correctly --- lib/atlasq/command/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/atlasq/command/base.rb b/lib/atlasq/command/base.rb index 8e7372d..0b1dd10 100644 --- a/lib/atlasq/command/base.rb +++ b/lib/atlasq/command/base.rb @@ -23,7 +23,7 @@ def initialize(search_terms) # @return [String] def content - NotImplementedError + raise NotImplementedError end end end