diff options
author | Roman Nekhoroshev <terafloo@gmail.com> | 2017-11-02 13:47:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-02 13:47:11 -0700 |
commit | da3bfa693af8c61da0b16e6d323c1057d68de97f (patch) | |
tree | b823fd547cb92b87590d9b8479c83c2c4729d299 /python/google | |
parent | cbe250591fca9d2e776776be065a72c5550a5556 (diff) |
Fix a typo in WKT's test suite
Hi!
Sorry for bothering with such a minor thing, but I just noticed and fixed one annoying typo in WKT's test suite:
`"accpets" -> "accepts"`
Thanks!
Diffstat (limited to 'python/google')
-rw-r--r-- | python/google/protobuf/internal/well_known_types_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/google/protobuf/internal/well_known_types_test.py b/python/google/protobuf/internal/well_known_types_test.py index 291fe4e8..573bc37d 100644 --- a/python/google/protobuf/internal/well_known_types_test.py +++ b/python/google/protobuf/internal/well_known_types_test.py @@ -101,7 +101,7 @@ class TimeUtilTest(TimeUtilTestBase): message.FromJsonString('1970-01-01T00:00:00.1Z') self.assertEqual(0, message.seconds) self.assertEqual(100000000, message.nanos) - # Parsing accpets offsets. + # Parsing accepts offsets. message.FromJsonString('1970-01-01T00:00:00-08:00') self.assertEqual(8 * 3600, message.seconds) self.assertEqual(0, message.nanos) |