Formatting

This commit is contained in:
Michael Miller 2019-08-10 11:38:13 -06:00
parent 535dc6e923
commit a56d6762c0

View file

@ -45,7 +45,7 @@ module Spectator::Matchers
private struct MatchData(ExpressionType) < MatchData private struct MatchData(ExpressionType) < MatchData
# Creates the match data. # Creates the match data.
def initialize(matched, @before : ExpressionType, @after : ExpressionType, def initialize(matched, @before : ExpressionType, @after : ExpressionType,
@action_label : String, @expression_label : String) @action_label : String, @expression_label : String)
super(matched) super(matched)
end end
@ -53,7 +53,7 @@ module Spectator::Matchers
def named_tuple def named_tuple
{ {
before: @before, before: @before,
after: @after after: @after,
} }
end end