mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Example names can't be a symbol
This commit is contained in:
parent
96a7989815
commit
f4a05502f9
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ module Spectator
|
|||
# The *source* tracks where the example exists in source code.
|
||||
# The example will be assigned to *group* if it is provided.
|
||||
def initialize(@delegate : ExampleContextDelegate,
|
||||
name : String | Symbol? = nil, source : Source? = nil, group : ExampleGroup? = nil)
|
||||
name : String? = nil, source : Source? = nil, group : ExampleGroup? = nil)
|
||||
super(name, source, group)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue