aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_basic.py
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@tuxion.com> 2014-06-04 22:52:52 -0400
committerGravatar Jon Bernard <jbernard@tuxion.com> 2014-07-07 14:15:06 -0400
commitfc933e26004fad5e26eb29f80ef32bf33166e47d (patch)
treef78d56fa5d029482ccb00053d96e768a1a683ad5 /tests/test_basic.py
parent1381f1671365c98c3d7839a7379556131534b32d (diff)
downloaddotfiles-fc933e26004fad5e26eb29f80ef32bf33166e47d.tar.gz
dotfiles-fc933e26004fad5e26eb29f80ef32bf33166e47d.tar.bz2
dotfiles-fc933e26004fad5e26eb29f80ef32bf33166e47d.zip
Remove accidental tabs in unit tests
Python 2 will overlook this and continue executing, but python 3 will issue an error and exit.
Diffstat (limited to 'tests/test_basic.py')
-rwxr-xr-xtests/test_basic.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_basic.py b/tests/test_basic.py
index 5c48a82..2cd019f 100755
--- a/tests/test_basic.py
+++ b/tests/test_basic.py
@@ -376,14 +376,14 @@ class DotfilesTestCase(unittest.TestCase):
dotfiles.sync()
- expected = os.path.join(self.homedir, ".config")
- self.assertTrue(os.path.isdir(expected))
+ expected = os.path.join(self.homedir, ".config")
+ self.assertTrue(os.path.isdir(expected))
- expected = os.path.join(expected, "awesome")
- self.assertTrue(os.path.islink(expected))
+ expected = os.path.join(expected, "awesome")
+ self.assertTrue(os.path.islink(expected))
- expected = os.path.join(expected, "testfile")
- self.assertTrue(os.path.isfile(expected))
+ expected = os.path.join(expected, "testfile")
+ self.assertTrue(os.path.isfile(expected))
if __name__ == '__main__':