aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtest_dotfiles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_dotfiles.py b/test_dotfiles.py
index 4ecb9d7..88ffe67 100755
--- a/test_dotfiles.py
+++ b/test_dotfiles.py
@@ -208,7 +208,7 @@ class DotfilesTestCase(unittest.TestCase):
# Verify it created what we expect
def check_all(files, symlinks):
- self.assertTrue(join(self.homedir, '.package'))
+ self.assertTrue(os.path.isdir(join(self.homedir, '.package')))
for src, dst in zip(files, symlinks):
self.assertTrue(is_link_to(join(self.homedir, dst),
join(self.repository, src)))