Tests: make dummy tabs still inherit tabs.Tab
This commit is contained in:
parent
32576fbdc4
commit
f781511237
1 changed files with 2 additions and 2 deletions
|
@ -3,12 +3,12 @@ Tests for the Tabs list module
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from poezio.core.tabs import Tabs
|
from poezio.core.tabs import Tabs
|
||||||
from poezio.tabs import GapTab
|
from poezio.tabs import GapTab, Tab
|
||||||
from poezio.events import EventHandler
|
from poezio.events import EventHandler
|
||||||
|
|
||||||
h = EventHandler()
|
h = EventHandler()
|
||||||
|
|
||||||
class DummyTab:
|
class DummyTab(Tab):
|
||||||
count = 0
|
count = 0
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in a new issue