Merge "Fix up the test for .ismount"

This commit is contained in:
Zuul 2018-10-27 04:48:10 +00:00 committed by Gerrit Code Review
commit 24bf5eea8c
1 changed files with 3 additions and 1 deletions

View File

@ -3162,7 +3162,9 @@ cluster_dfw1 = http://dfw1.host/v1/
tmpdir = mkdtemp()
try:
link = os.path.join(tmpdir, "tmp")
os.symlink(tempfile.gettempdir(), link)
rdir = os.path.join(tmpdir, "realtmp")
os.mkdir(rdir)
os.symlink(rdir, link)
self.assertFalse(utils.ismount(link))
# Can add a stubfile to make it pass