From c55b58f63bcc1dc94430df03438c5ed09db1e8d2 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 13 Mar 2019 08:24:21 +0100 Subject: [PATCH] fix test --- tests/test_compare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_compare.py b/tests/test_compare.py index c336698..34f11ec 100644 --- a/tests/test_compare.py +++ b/tests/test_compare.py @@ -162,9 +162,9 @@ class TestCompare(unittest.TestCase): # test compare from dotdrop self.assertFalse(cmd_compare(o, tmp)) # test focus - o.compare_focus = d4 + o.compare_focus = [d4] self.assertFalse(cmd_compare(o, tmp)) - o.compare_focus = '/tmp/fake' + o.compare_focus = ['/tmp/fake'] self.assertFalse(cmd_compare(o, tmp))