diff options
author | Tim Peters <tim.peters@gmail.com> | 2007-03-12 18:07:52 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2007-03-12 18:07:52 +0000 |
commit | ea5962f86e8550978446724dadcacd60e03feef2 (patch) | |
tree | a133c011e4a81da13347903bd8d99ef1e2ddf898 /Lib/test/test_posixpath.py | |
parent | cb637c9ea341b5b1fe94eec78085d2851119161d (diff) | |
download | cpython-git-ea5962f86e8550978446724dadcacd60e03feef2.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_posixpath.py')
-rw-r--r-- | Lib/test/test_posixpath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index 8ac5853744..5632dcc8cd 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -24,7 +24,7 @@ class PosixPathTest(unittest.TestCase): for suffix in ["", "1", "2"]: test_support.unlink(test_support.TESTFN + suffix) safe_rmdir(test_support.TESTFN + suffix) - + def assertIs(self, a, b): self.assert_(a is b) @@ -161,7 +161,7 @@ class PosixPathTest(unittest.TestCase): if not f.closed: f.close() - def test_islink(self): + def test_islink(self): self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False) f = open(test_support.TESTFN + "1", "wb") try: |