From 76c525de528fa77e25852de097490a0b3d804975 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 29 May 2021 22:47:53 -0600 Subject: [PATCH] Fix call to example_finished --- src/spectator/spec/events.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spectator/spec/events.cr b/src/spectator/spec/events.cr index 5adb606..d6ddb8f 100644 --- a/src/spectator/spec/events.cr +++ b/src/spectator/spec/events.cr @@ -25,7 +25,7 @@ module Spectator private def example_finished(example) notification = Formatting::ExampleNotification.new(example) visitor = ResultVisitor.new(formatter, notification) - formatter.example_started(notification) + formatter.example_finished(notification) example.result.accept(visitor) end