Skip to content

Commit df52c66

Browse files
author
efajardo
committed
Typoe in the code
1 parent 4bd2dd3 commit df52c66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

osgtest/tests/test_60_singularity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ def mountSingularityCVMFSRepo(self, repo):
1616
self.fail("failed to mkdir /cvmfs/%s" % repo)
1717

1818
command = ('mount', '-t', 'cvmfs', 'repo', '/cvmfs/' + repo)
19-
if status != 0:
19+
status, stdout, stderr = core.system(command, False)
20+
if status != 0:
2021
self.fail("failed to mount" % repo)
2122

2223

0 commit comments

Comments
 (0)