Skip to content

Commit 530dfea

Browse files
committed
paths wrong in testing files
1 parent 0bef36e commit 530dfea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

singularity/tests/test_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TestBuildTemplate(unittest.TestCase):
2929
def setUp(self):
3030
self.pwd = get_installdir()
3131
self.tmpdir = tempfile.mkdtemp()
32-
self.spec = "%s/testing/data/Singularity" %(self.pwd)
32+
self.spec = "%s/tests/data/Singularity" %(self.pwd)
3333
print("\n---START----------------------------------------")
3434

3535
def tearDown(self):

singularity/tests/test_package.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ class TestPackage(unittest.TestCase):
2929
def setUp(self):
3030
self.pwd = get_installdir()
3131
self.tmpdir = tempfile.mkdtemp()
32-
self.image1 = "%s/testing/data/busybox-2016-02-16.img" %(self.pwd)
33-
self.image2 = "%s/testing/data/cirros-2016-01-04.img" %(self.pwd)
32+
self.image1 = "%s/tests/data/busybox-2016-02-16.img" %(self.pwd)
33+
self.image2 = "%s/tests/data/cirros-2016-01-04.img" %(self.pwd)
3434
# We can't test creating the packages, because requires sudo :/
35-
self.pkg1 = "%s/testing/data/busybox-2016-02-16.img.zip" %(self.pwd)
36-
self.pkg2 = "%s/testing/data/cirros-2016-01-04.img.zip" %(self.pwd)
35+
self.pkg1 = "%s/tests/data/busybox-2016-02-16.img.zip" %(self.pwd)
36+
self.pkg2 = "%s/tests/data/cirros-2016-01-04.img.zip" %(self.pwd)
3737

3838

3939
def tearDown(self):

0 commit comments

Comments
 (0)