commit | 1daa71bbef9aa64f9ed3779075d481f722d0793c | [log] [tgz] |
---|---|---|
author | Joe Gregorio <jcgregorio@google.com> | Thu Sep 15 18:12:14 2011 -0400 |
committer | Joe Gregorio <jcgregorio@google.com> | Thu Sep 15 18:12:14 2011 -0400 |
tree | 4ca14ad04655e9accb9d045a117e2f277e0c3d01 | |
parent | 336b978e0d05cf2d200e6aa4de1f27a8e301351c [diff] [blame] |
Fix issues with App Engine datastore
diff --git a/tests/test_oauth2client.py b/tests/test_oauth2client.py index 14beb97..4063e8b 100644 --- a/tests/test_oauth2client.py +++ b/tests/test_oauth2client.py
@@ -101,6 +101,9 @@ json = self.credentials.to_json() instance = OAuth2Credentials.from_json(json) self.assertEquals(type(instance), OAuth2Credentials) + instance.token_expiry = None + self.credentials.token_expiry = None + self.assertEquals(self.credentials.__dict__, instance.__dict__)