This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 8bffed2  AVRO-2444: Fix gen_interop_data.py to work with interop.avsc 
(#559)
8bffed2 is described below

commit 8bffed2c95cefb062d1593f7c59eae62da012c52
Author: Kengo Seki <[email protected]>
AuthorDate: Mon Jun 24 18:16:00 2019 +0900

    AVRO-2444: Fix gen_interop_data.py to work with interop.avsc (#559)
---
 lang/py3/avro/tests/gen_interop_data.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/py3/avro/tests/gen_interop_data.py 
b/lang/py3/avro/tests/gen_interop_data.py
index 4b83c30..2180b2d 100644
--- a/lang/py3/avro/tests/gen_interop_data.py
+++ b/lang/py3/avro/tests/gen_interop_data.py
@@ -32,7 +32,7 @@ DATUM = {
     'boolField': True,
     'floatField': 1234.0,
     'doubleField': -1234.0,
-    'bytesField': '12312adf',
+    'bytesField': b'12312adf',
     'nullField': None,
     'arrayField': [5.0, 0.0, 12.0],
     'mapField': {'a': {'label': 'a'}, 'bee': {'label': 'cee'}},

Reply via email to