Skip to content

Commit 1ecf5c6

Browse files
author
efajardo
committed
Typoe in the code
1 parent 97ee0d7 commit 1ecf5c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

osgtest/tests/test_60_singularity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ class TestSingularity(osgunittest.OSGTestCase):
1010
__cvmfs_image = '/cvmfs/singularity.opensciencegrid.org/opensciencegrid/osg-wn:3.3-el6'
1111

1212
def mountSingularityCVMFSRepo(self, repo):
13-
command = ('mkdir', '-p', 'singularity.opensciencegrid.org')
13+
command = ('mkdir', '-p', /cvmfs + repo)
1414
status, stdout, stderr = core.system(command, False)
1515
if status != 0:
1616
self.fail("failed to mkdir /cvmfs/%s" % repo)
1717

1818
command = ('mount', '-t', 'cvmfs', 'repo', '/cvmfs/' + repo)
1919
status, stdout, stderr = core.system(command, False)
2020
if status != 0:
21-
self.fail("failed to mount: %s, error: %s" % (repo,stderr))
21+
self.fail("failed to mount: %s, error: %s" % (repo,stdout))
2222

2323

2424
def test_01_singularity(self):

0 commit comments

Comments
 (0)