From a56d6762c0625ebcf460d516f3ecfd3128949d6e Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 10 Aug 2019 11:38:13 -0600 Subject: [PATCH] Formatting --- src/spectator/matchers/change_matcher.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spectator/matchers/change_matcher.cr b/src/spectator/matchers/change_matcher.cr index 0b56951..12bf2b7 100644 --- a/src/spectator/matchers/change_matcher.cr +++ b/src/spectator/matchers/change_matcher.cr @@ -45,7 +45,7 @@ module Spectator::Matchers private struct MatchData(ExpressionType) < MatchData # Creates the match data. def initialize(matched, @before : ExpressionType, @after : ExpressionType, - @action_label : String, @expression_label : String) + @action_label : String, @expression_label : String) super(matched) end @@ -53,7 +53,7 @@ module Spectator::Matchers def named_tuple { before: @before, - after: @after + after: @after, } end