diff options
author | mathieui <mathieui@mathieui.net> | 2018-08-11 22:57:05 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-08-11 22:57:05 +0200 |
commit | f7815112377e774aac9c4e2d0ea7a6c9851e0d9b (patch) | |
tree | 7348a9a5f9126f83cf735f7222744cdb06cd9fd0 /test/test_tabs.py | |
parent | 32576fbdc49434e99440773832b942fbc9364994 (diff) | |
download | poezio-f7815112377e774aac9c4e2d0ea7a6c9851e0d9b.tar.gz poezio-f7815112377e774aac9c4e2d0ea7a6c9851e0d9b.tar.bz2 poezio-f7815112377e774aac9c4e2d0ea7a6c9851e0d9b.tar.xz poezio-f7815112377e774aac9c4e2d0ea7a6c9851e0d9b.zip |
Tests: make dummy tabs still inherit tabs.Tab
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): |