fix logging tests
This commit is contained in:
parent
ca5bb35bbb
commit
fdc2981e74
1 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ class LoggingTestCase(utils.TestCase):
|
||||||
args = ['--file', entity, '--config', config, '--time', now]
|
args = ['--file', entity, '--config', config, '--time', now]
|
||||||
|
|
||||||
with utils.mock.patch('wakatime.stats.open') as mock_open:
|
with utils.mock.patch('wakatime.stats.open') as mock_open:
|
||||||
mock_open.side_effect = IOError('FooBar')
|
mock_open.side_effect = Exception('FooBar')
|
||||||
|
|
||||||
retval = execute(args)
|
retval = execute(args)
|
||||||
self.assertEquals(retval, 102)
|
self.assertEquals(retval, 102)
|
||||||
|
@ -128,4 +128,4 @@ class LoggingTestCase(utils.TestCase):
|
||||||
|
|
||||||
output = u("\n").join([u(' ').join(x) for x in logs.actual()])
|
output = u("\n").join([u(' ').join(x) for x in logs.actual()])
|
||||||
self.assertIn(u('WakaTime ERROR Traceback (most recent call last):'), output)
|
self.assertIn(u('WakaTime ERROR Traceback (most recent call last):'), output)
|
||||||
self.assertIn(u('IOError: FooBar'), output)
|
self.assertIn(u('Exception: FooBar'), output)
|
||||||
|
|
Loading…
Reference in a new issue