summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_index_tricks.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-10-02 07:54:11 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-10-02 07:54:11 +0000
commit610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch)
tree05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/lib/tests/test_index_tricks.py
parentb4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff)
downloadnumpy-610438f1fb2436cec44b9ddd451daa67d846cdd0.tar.gz
Rename test classes to CapWords.
Diffstat (limited to 'numpy/lib/tests/test_index_tricks.py')
-rw-r--r--numpy/lib/tests/test_index_tricks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_index_tricks.py b/numpy/lib/tests/test_index_tricks.py
index 5d4f540b2..8fc192202 100644
--- a/numpy/lib/tests/test_index_tricks.py
+++ b/numpy/lib/tests/test_index_tricks.py
@@ -3,7 +3,7 @@ set_package_path()
from numpy import array, ones, r_, mgrid
restore_path()
-class test_grid(NumpyTestCase):
+class TestGrid(NumpyTestCase):
def check_basic(self):
a = mgrid[-1:1:10j]
b = mgrid[-1:1:0.1]
@@ -28,7 +28,7 @@ class test_grid(NumpyTestCase):
assert_array_almost_equal(d[0,1,:]-d[0,0,:], 0.1*ones(20,'d'),11)
assert_array_almost_equal(d[1,:,1]-d[1,:,0], 0.2*ones(20,'d'),11)
-class test_concatenator(NumpyTestCase):
+class TestConcatenator(NumpyTestCase):
def check_1d(self):
assert_array_equal(r_[1,2,3,4,5,6],array([1,2,3,4,5,6]))
b = ones(5)