From 38eb5d5e5085cfaa4e4a6b6439791fb3fbe94fb1 Mon Sep 17 00:00:00 2001 From: Sijawusz Pur Rahnama Date: Wed, 23 Nov 2022 03:26:55 +0100 Subject: [PATCH] Fix invalid crystal syntax in `Lint/Syntax` rule spec --- spec/ameba/rule/lint/syntax_spec.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/ameba/rule/lint/syntax_spec.cr b/spec/ameba/rule/lint/syntax_spec.cr index 2412b0b2..107752ac 100644 --- a/spec/ameba/rule/lint/syntax_spec.cr +++ b/spec/ameba/rule/lint/syntax_spec.cr @@ -8,7 +8,7 @@ module Ameba::Rule::Lint expect_no_issues subject, <<-CRYSTAL def hello puts "totally valid" - rescue e: Exception + rescue e : Exception end CRYSTAL end