summaryrefslogtreecommitdiff
path: root/indra/test/test_llmanifest.py
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2022-03-07 00:19:11 -0800
committerBrad Kittenbrink <brad@lindenlab.com>2022-03-07 00:19:11 -0800
commit89ab1e4525445d5efc370c381f7c1e18faab8f16 (patch)
tree3e1326470eddea3310bfd15867c9d54dd3b1652c /indra/test/test_llmanifest.py
parent40b80251e48d5f0ae3695d9019261f9e472f3e16 (diff)
parent6ca09a94554ec01f5c94ec60fffd01d7e33f3546 (diff)
Merge remote-tracking branch 'origin/master' into DRTVWR-550-mfa
Diffstat (limited to 'indra/test/test_llmanifest.py')
-rwxr-xr-xindra/test/test_llmanifest.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/test/test_llmanifest.py b/indra/test/test_llmanifest.py
index a97abbc6ee..c746d59ff2 100755
--- a/indra/test/test_llmanifest.py
+++ b/indra/test/test_llmanifest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
@file test_llmanifest.py
@author Ryan Williams
@@ -124,10 +124,10 @@ class TestLLManifest(unittest.TestCase):
def testcmakedirs(self):
self.m.cmakedirs("test_dir_DELETE/nested/dir")
- self.assert_(os.path.exists("test_dir_DELETE/nested/dir"))
- self.assert_(os.path.isdir("test_dir_DELETE"))
- self.assert_(os.path.isdir("test_dir_DELETE/nested"))
- self.assert_(os.path.isdir("test_dir_DELETE/nested/dir"))
+ self.assertTrue(os.path.exists("test_dir_DELETE/nested/dir"))
+ self.assertTrue(os.path.isdir("test_dir_DELETE"))
+ self.assertTrue(os.path.isdir("test_dir_DELETE/nested"))
+ self.assertTrue(os.path.isdir("test_dir_DELETE/nested/dir"))
os.removedirs("test_dir_DELETE/nested/dir")
if __name__ == '__main__':