aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Eikenberry <[email protected]>2017-08-03 00:09:03 -0500
committerAaron Eikenberry <[email protected]>2017-08-03 00:09:03 -0500
commit67831428f16614f018f54746fa0fd1654089fb05 (patch)
tree8de0d1276027500c4686015a486c4d78f26a94f5
parentMerge branch 'master' of github.com:dylanaraps/pywal (diff)
downloadpywal-67831428f16614f018f54746fa0fd1654089fb05.tar.xz
pywal-67831428f16614f018f54746fa0fd1654089fb05.zip
fixes lint error
-rw-r--r--tests/test_main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_main.py b/tests/test_main.py
index 6cf518f..d3dbcac 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -20,7 +20,8 @@ class TestMain(unittest.TestCase):
reload.env = MagicMock()
args = __main__.get_args(["-e"])
__main__.process_args(args)
- reload.env.assert_not_called()
+ self.assertFalse(reload.env.called)
+
if __name__ == "__main__":
unittest.main()