aboutsummaryrefslogtreecommitdiff
path: root/tests/field_size_16_proto3
diff options
context:
space:
mode:
authorHamina, Juha-Pekka <Juha-Pekka.Hamina@nordicsemi.no>2018-02-26 13:24:53 +0200
committerHamina, Juha-Pekka <Juha-Pekka.Hamina@nordicsemi.no>2018-02-26 13:24:53 +0200
commitf71acc19332f6dfbfcc4d063e12a250fbc107d7a (patch)
treec71f915cf9c2534b4ded1e2ef9d223327ccfabcc /tests/field_size_16_proto3
parent589dfcab611d6978aca2c16bd15a7fbcc735ccda (diff)
downloadnanopb-c-f71acc19332f6dfbfcc4d063e12a250fbc107d7a.tar.gz
Fix for default value byte escaping
Diffstat (limited to 'tests/field_size_16_proto3')
-rw-r--r--tests/field_size_16_proto3/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/field_size_16_proto3/SConscript b/tests/field_size_16_proto3/SConscript
index 912c038..4a8e16d 100644
--- a/tests/field_size_16_proto3/SConscript
+++ b/tests/field_size_16_proto3/SConscript
@@ -8,7 +8,7 @@ if 'PROTOC_VERSION' in env:
match = re.search('([0-9]+).([0-9]+).([0-9]+)', env['PROTOC_VERSION'])
if match:
- version = map(int, match.groups())
+ version = list(map(int, match.groups()))
# proto3 syntax is supported by protoc >= 3.0.0
if env.GetOption('clean') or (match and version[0] >= 3):