Fixed small issue

This commit is contained in:
Henrique 2019-11-27 09:27:38 -05:00
parent 8eb173b44e
commit 2177eb9e35
1 changed files with 2 additions and 2 deletions

View File

@ -17,12 +17,12 @@ def tctx(tmpdir):
tctx = taddons.context(options=opts)
ch = command_history.CommandHistory()
tctx.master.addons.add(ch)
ch.configure([])
ch.configure('command_history')
yield tctx
# This runs after each test
ch.cleanup()
ch.clear_history()
class TestListCompleter: