summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_posixpath.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2005-06-03 22:40:27 (GMT)
committerTim Peters <tim.peters@gmail.com>2005-06-03 22:40:27 (GMT)
commit5d36a55eaa55d34bfaf91135920688d0cbc6fc5f (patch)
tree988a9c2847c26e4667de98e0fe6634e0659a3ba1 /Lib/test/test_posixpath.py
parent6b95f1d963d3fd2dcc2e84e83b514364e9f52006 (diff)
downloadcpython-5d36a55eaa55d34bfaf91135920688d0cbc6fc5f.zip
cpython-5d36a55eaa55d34bfaf91135920688d0cbc6fc5f.tar.gz
cpython-5d36a55eaa55d34bfaf91135920688d0cbc6fc5f.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_posixpath.py')
-rw-r--r--Lib/test/test_posixpath.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index b2d8d40..3984157 100644
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -476,7 +476,7 @@ class PosixPathTest(unittest.TestCase):
self.safe_rmdir(ABSTFN + "/k/y")
self.safe_rmdir(ABSTFN + "/k")
self.safe_rmdir(ABSTFN)
-
+
def test_realpath_resolve_first(self):
# Bug #1213894: The first component of the path, if not absolute,
# must be resolved too.
@@ -487,7 +487,7 @@ class PosixPathTest(unittest.TestCase):
os.mkdir(ABSTFN + "/k")
os.symlink(ABSTFN, ABSTFN + "link")
os.chdir(dirname(ABSTFN))
-
+
base = basename(ABSTFN)
self.assertEqual(realpath(base + "link"), ABSTFN)
self.assertEqual(realpath(base + "link/k"), ABSTFN + "/k")