diff options
author | Luper Rouch <luper.rouch@gmail.com> | 2013-02-09 18:35:34 +0100 |
---|---|---|
committer | Luper Rouch <luper.rouch@gmail.com> | 2013-02-09 18:35:34 +0100 |
commit | 23775a043edca5c979b3d47288364d0484e7a919 (patch) | |
tree | d93bbc55cbdc55b121b648cbec5a867c0c603960 /test_dotfiles.py | |
parent | 01a349882e929d507605fb015c14be71006f854a (diff) | |
download | dotfiles-23775a043edca5c979b3d47288364d0484e7a919.tar.gz dotfiles-23775a043edca5c979b3d47288364d0484e7a919.tar.bz2 dotfiles-23775a043edca5c979b3d47288364d0484e7a919.zip |
typo in test
Diffstat (limited to 'test_dotfiles.py')
-rwxr-xr-x | test_dotfiles.py | 2 |
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))) |