Commit 9875c575 by Sébastien Eustace

Fix tests

parent 56be1ecf
...@@ -62,7 +62,13 @@ def setup(mocker, installer, installed): ...@@ -62,7 +62,13 @@ def setup(mocker, installer, installed):
p.return_value = '9cf87a285a2d3fbb0b9fa621997b3acc3631ed24' p.return_value = '9cf87a285a2d3fbb0b9fa621997b3acc3631ed24'
# Setting terminal width # Setting terminal width
os.environ['COLUMNS'] = 80 environ = dict(os.environ)
os.environ['COLUMNS'] = '80'
yield
os.environ.clear()
os.environ.update(environ)
class Application(BaseApplication): class Application(BaseApplication):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment