summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/tests/test_regression.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_regression.py b/numpy/core/tests/test_regression.py
index 1020a3d27..a8ec61f53 100644
--- a/numpy/core/tests/test_regression.py
+++ b/numpy/core/tests/test_regression.py
@@ -1028,7 +1028,7 @@ class TestRegression(NumpyTestCase):
np.dot(z, y)
def check_astype_copy(self, level=rlevel):
- """Ticket 788, changeset r5155"""
+ """Ticket #788, changeset r5155"""
# The test data file was generated by scipy.io.savemat.
# The dtype is float64, but the isbuiltin attribute is 0.
data_dir = path.join(path.dirname(__file__), 'data')
@@ -1039,7 +1039,7 @@ class TestRegression(NumpyTestCase):
xpd.__array_interface__['data'][0])
def check_recarray_tolist(self, level=rlevel):
- """Ticket #783
+ """Ticket #793, changeset r5215
"""
a = np.recarray(2, formats="i4,f8,f8", names="id,x,y")
b = a.tolist()