Skip to content

Commit

Permalink
Update serialize test with version change
Browse files Browse the repository at this point in the history
  • Loading branch information
bletham committed Sep 3, 2020
1 parent cb966a5 commit 5faacc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/fbprophet/tests/test_serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_simple_serialize(self):
# Make sure json doesn't get too large in the future
self.assertTrue(len(model_str) < 200000)
z = json.loads(model_str)
self.assertEqual(z['__fbprophet_version'], '0.7')
self.assertEqual(z['__fbprophet_version'], '0.7.1')

m2 = model_from_json(model_str)

Expand Down

0 comments on commit 5faacc9

Please sign in to comment.