mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-28 14:26:23 +02:00
Update pickle_tests.py
This commit is contained in:
parent
2371683e74
commit
5f52215e63
1 changed files with 2 additions and 1 deletions
|
|
@ -66,7 +66,8 @@ class Test(ListDictTestCase):
|
|||
with f:
|
||||
pickle.dump(piov, f)
|
||||
|
||||
pio2 = GPy.load(f)
|
||||
with open(f):
|
||||
pio2 = GPy.load(f)
|
||||
#py3 fix
|
||||
#self.assertListDictEquals(dict(piov.items()), dict(pio2.iteritems()))
|
||||
self.assertListDictEquals(dict(piov.items()), dict(pio2.items()))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue