From 8f4410a68b68818019c34bc91510d471a82183c3 Mon Sep 17 00:00:00 2001 From: Margret Riegert Date: Sun, 24 Nov 2024 15:36:47 -0800 Subject: [PATCH] Update logical_without_paren_spec.cr Co-authored-by: Sijawusz Pur Rahnama --- spec/ameba/rule/lint/logical_without_paren_spec.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/ameba/rule/lint/logical_without_paren_spec.cr b/spec/ameba/rule/lint/logical_without_paren_spec.cr index 9b5185f35..d4977f7a9 100644 --- a/spec/ameba/rule/lint/logical_without_paren_spec.cr +++ b/spec/ameba/rule/lint/logical_without_paren_spec.cr @@ -4,7 +4,7 @@ module Ameba::Rule::Lint describe LogicalWithoutParenthesis do subject = LogicalWithoutParenthesis.new - it "passes if logical operator in call args has parenthesis" do + it "passes if logical operator in call args has parentheses" do expect_no_issues subject, <<-CRYSTAL if foo.includes?("bar") || foo.includes?("batz") puts "this code is bug-free"