diff options
-rwxr-xr-x | test_dotfiles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test_dotfiles.py b/test_dotfiles.py index 0e84435..5c48a82 100755 --- a/test_dotfiles.py +++ b/test_dotfiles.py @@ -377,10 +377,10 @@ class DotfilesTestCase(unittest.TestCase): dotfiles.sync() expected = os.path.join(self.homedir, ".config") - self.assertTrue(os.path.islink(expected)) + self.assertTrue(os.path.isdir(expected)) expected = os.path.join(expected, "awesome") - self.assertTrue(os.path.isdir(expected)) + self.assertTrue(os.path.islink(expected)) expected = os.path.join(expected, "testfile") self.assertTrue(os.path.isfile(expected)) |