minor import and test corrections

This commit is contained in:
Luke Campagnola 2017-10-04 09:35:57 -07:00
parent 7c9107fa5d
commit 9ef9f73be5
2 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@ from .python2_3 import asUnicode, basestring
from .Qt import QtGui, QtCore, USE_PYSIDE
from . import getConfigOption, setConfigOptions
from . import debug
from .metaarray import MetaArray
Colors = {

View File

@ -344,14 +344,14 @@ def test_eq():
a2 = a1 + 1
a3 = a2.astype('int')
a4 = np.empty((0, 20))
assert not eq(a1, a2)
assert not eq(a1, a3)
assert not eq(a1, a4)
assert not eq(a1, a2) # same shape/dtype, different values
assert not eq(a1, a3) # same shape, different dtype and values
assert not eq(a1, a4) # different shape (note: np.all gives True if one array has size 0)
assert eq(a2, a3)
assert not eq(a2, a4)
assert not eq(a2, a3) # same values, but different dtype
assert not eq(a2, a4) # different shape
assert not eq(a3, a4)
assert not eq(a3, a4) # different shape and dtype
assert eq(a4, a4.copy())
assert not eq(a4, a4.T)