diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-07-17 11:51:44 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-07-17 11:58:20 -0600 |
commit | 95c477f71cc002b5a444ddef09f5d6ce92a23c44 (patch) | |
tree | 673b23ba12b7354e9f9fc6585918495b0d7737d4 /numpy/distutils/tests/test_fcompiler_intel.py | |
parent | 5381c68ec30e43830290d210362adc4297f96902 (diff) | |
download | numpy-95c477f71cc002b5a444ddef09f5d6ce92a23c44.tar.gz |
TST: Remove unittest dependencies in numpy/distutils/tests
Also rename some classes that should not begin 'Test'.
Diffstat (limited to 'numpy/distutils/tests/test_fcompiler_intel.py')
-rw-r--r-- | numpy/distutils/tests/test_fcompiler_intel.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/tests/test_fcompiler_intel.py b/numpy/distutils/tests/test_fcompiler_intel.py index 8e371b92b..b13a01788 100644 --- a/numpy/distutils/tests/test_fcompiler_intel.py +++ b/numpy/distutils/tests/test_fcompiler_intel.py @@ -1,7 +1,7 @@ from __future__ import division, absolute_import, print_function import numpy.distutils.fcompiler -from numpy.testing import TestCase, run_module_suite, assert_ +from numpy.testing import run_module_suite, assert_ intel_32bit_version_strings = [ @@ -16,7 +16,7 @@ intel_64bit_version_strings = [ "running on Intel(R) 64, Version 11.1", '11.1') ] -class TestIntelFCompilerVersions(TestCase): +class TestIntelFCompilerVersions(object): def test_32bit_version(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='intel') for vs, version in intel_32bit_version_strings: @@ -24,7 +24,7 @@ class TestIntelFCompilerVersions(TestCase): assert_(v == version) -class TestIntelEM64TFCompilerVersions(TestCase): +class TestIntelEM64TFCompilerVersions(object): def test_64bit_version(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='intelem') for vs, version in intel_64bit_version_strings: |