diff options
Diffstat (limited to 'test/test_tabs.py')
-rw-r--r-- | test/test_tabs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_tabs.py b/test/test_tabs.py index 83f7e6dc..aab4f0d0 100644 --- a/test/test_tabs.py +++ b/test/test_tabs.py @@ -3,12 +3,12 @@ Tests for the Tabs list module """ from poezio.core.tabs import Tabs -from poezio.tabs import GapTab +from poezio.tabs import GapTab, Tab from poezio.events import EventHandler h = EventHandler() -class DummyTab: +class DummyTab(Tab): count = 0 def __init__(self): |