[core/output] Make tests pass again

Using an empty configuration vs. no configuration at all to make tests
run again.
This commit is contained in:
Tobias Witek 2020-03-15 14:02:48 +01:00
parent f2dc5f4b40
commit 9076b30325

View file

@ -6,7 +6,7 @@ import core.theme
import core.event import core.event
class i3(object): class i3(object):
def __init__(self, theme=core.theme.Theme(), config=None): def __init__(self, theme=core.theme.Theme(), config=core.config.Config([])):
self._modules = [] self._modules = []
self._status = {} self._status = {}
self._theme = theme self._theme = theme