summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-05-18 11:32:15 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2015-05-18 11:32:15 -0700
commit09151785b3353c0169a6c41771cd471c5207d2cf (patch)
tree48d17b0dfd291840eaf22195fd4fc908d2a50249
parentb2f46c703d172a395abac96508578186e36bb504 (diff)
downloadspack-09151785b3353c0169a6c41771cd471c5207d2cf.tar.gz
spack-09151785b3353c0169a6c41771cd471c5207d2cf.tar.bz2
spack-09151785b3353c0169a6c41771cd471c5207d2cf.tar.xz
spack-09151785b3353c0169a6c41771cd471c5207d2cf.zip
SPACK-87: enable disabled git fetch tests.old-install-layout
-rw-r--r--lib/spack/spack/test/git_fetch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/spack/test/git_fetch.py b/lib/spack/spack/test/git_fetch.py
index 04422adb57..da57f87bd0 100644
--- a/lib/spack/spack/test/git_fetch.py
+++ b/lib/spack/spack/test/git_fetch.py
@@ -109,7 +109,7 @@ class GitFetchTest(MockPackagesTest):
})
- def ztest_fetch_branch(self):
+ def test_fetch_branch(self):
"""Test fetching a branch."""
self.try_fetch(self.repo.branch, self.repo.branch_file, {
'git' : self.repo.path,
@@ -117,7 +117,7 @@ class GitFetchTest(MockPackagesTest):
})
- def ztest_fetch_tag(self):
+ def test_fetch_tag(self):
"""Test fetching a tag."""
self.try_fetch(self.repo.tag, self.repo.tag_file, {
'git' : self.repo.path,
@@ -125,7 +125,7 @@ class GitFetchTest(MockPackagesTest):
})
- def ztest_fetch_commit(self):
+ def test_fetch_commit(self):
"""Test fetching a particular commit."""
self.try_fetch(self.repo.r1, self.repo.r1_file, {
'git' : self.repo.path,