1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00

fix tests and compare return value

This commit is contained in:
deadc0de6
2018-02-05 16:53:54 +01:00
parent 9b021ca39e
commit b7cd5cfa14
2 changed files with 7 additions and 5 deletions

View File

@@ -135,9 +135,9 @@ class TestCompare(unittest.TestCase):
self.assertTrue(results == expected)
# test compare from dotdrop
self.assertTrue(compare(opts, conf, tmp))
self.assertFalse(compare(opts, conf, tmp))
# test focus
self.assertTrue(compare(opts, conf, tmp, focus=d4))
self.assertFalse(compare(opts, conf, tmp, focus=d4))
self.assertFalse(compare(opts, conf, tmp, focus='/tmp/fake'))