Skip to content

Commit

Permalink
fixed architecture test
Browse files Browse the repository at this point in the history
  • Loading branch information
becker33 committed Aug 1, 2016
1 parent 0ce98d4 commit 0cf1f91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/spack/spack/test/architecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import spack
import spack.architecture
from spack.spec import *
from spack.platforms.cray_xc import CrayXc
from spack.platforms.cray import Cray
from spack.platforms.linux import Linux
from spack.platforms.bgq import Bgq
from spack.platforms.darwin import Darwin
Expand Down Expand Up @@ -76,7 +76,7 @@ def test_dict_functions_for_architecture(self):
def test_platform(self):
output_platform_class = spack.architecture.platform()
if os.path.exists('/opt/cray/craype'):
my_platform_class = CrayXc()
my_platform_class = Cray()
elif os.path.exists('/bgsys'):
my_platform_class = Bgq()
elif 'Linux' in py_platform.system():
Expand Down

0 comments on commit 0cf1f91

Please sign in to comment.