mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Fix leading space when group isn't symbolic
This commit is contained in:
parent
6cc3c5e20b
commit
1885ab0aa0
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ module Spectator
|
||||||
# ```
|
# ```
|
||||||
def to_s(io)
|
def to_s(io)
|
||||||
parent.to_s(io)
|
parent.to_s(io)
|
||||||
io << ' ' unless symbolic? && parent.symbolic?
|
io << ' ' unless (symbolic? || parent.is_a?(RootExampleGroup)) && parent.symbolic?
|
||||||
io << what
|
io << what
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue