mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-12 05:22:38 +02:00
Various Py3 related import fixes
This commit is contained in:
parent
82722305c3
commit
5607bd9a19
4 changed files with 5 additions and 3 deletions
|
|
@ -34,7 +34,7 @@ class ListDictTestCase(unittest.TestCase):
|
|||
for k,v in d1.items():
|
||||
self.assertListEqual(list(v), list(d2[k]), msg)
|
||||
def assertArrayListEquals(self, l1, l2):
|
||||
for a1, a2 in itertools.izip(l1,l2):
|
||||
for a1, a2 in zip(l1,l2):
|
||||
np.testing.assert_array_equal(a1, a2)
|
||||
|
||||
class Test(ListDictTestCase):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue