From 11cb16fb3ab0bb296694a71365725a1d52e70b18 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 30 Jan 2021 10:14:09 -0700 Subject: [PATCH] Add missing call to super --- src/spectator/example.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spectator/example.cr b/src/spectator/example.cr index 7ada1e9..1c3e654 100644 --- a/src/spectator/example.cr +++ b/src/spectator/example.cr @@ -41,6 +41,7 @@ module Spectator # The example will be assigned to *group* if it is provided. def initialize(name : String? = nil, source : Source? = nil, group : ExampleGroup? = nil, metadata = NamedTuple.new, &block : self ->) + super(name, source, group) @context = NullContext.new @entrypoint = block @metadata = Wrapper.new(metadata)