Skip to content

Commit

Permalink
Merge pull request protocolbuffers#3834 from sviterok/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in WKT's test suite
  • Loading branch information
liujisi authored Nov 13, 2017
2 parents 2720cdc + da3bfa6 commit d3537c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/google/protobuf/internal/well_known_types_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def testTimestampSerializeAndParse(self):
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)
Expand Down

0 comments on commit d3537c2

Please sign in to comment.