Skip to content

Commit

Permalink
Fix lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
khtg authored and vilasj committed Mar 6, 2018
1 parent f2f5baa commit b11884f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apitools/base/py/encoding_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,8 @@ def testUnknownNestedRoundtrip(self):
json.loads(encoding.MessageToJson(message)))

def testUnknownEnumNestedRoundtrip(self):
json_with_typo = ('{"outer_key": {"key_one": {"field_one": "VALUE_OEN",'
' "field_two": "VALUE_OEN"}}}')
json_with_typo = ('{"outer_key": {"key_one": {"field_one": '
'"VALUE_OEN", "field_two": "VALUE_OEN"}}}')
msg = encoding.JsonToMessage(NestedAdditionalPropertiesWithEnumMessage,
json_with_typo)
self.assertEqual(json.loads(json_with_typo),
Expand Down

0 comments on commit b11884f

Please sign in to comment.