diff options
author | v-korovin <v-korovin@yandex-team.com> | 2023-06-27 17:52:00 +0300 |
---|---|---|
committer | v-korovin <v-korovin@yandex-team.com> | 2023-06-27 17:52:00 +0300 |
commit | 2eefec0161788a9f70e8e2975663291811fccaad (patch) | |
tree | 64176c2d29b4fb9142713196fe7595f6d6a41851 | |
parent | 39303fc81f826eb3fdd124bc87e60851ef371c0b (diff) | |
download | ydb-2eefec0161788a9f70e8e2975663291811fccaad.tar.gz |
Fix devtools/ya/test/tests/unittests (canondata processing)
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/canonical.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/canonical.py b/library/python/testing/yatest_common/yatest/common/canonical.py index 7819fa7e2a..0bce0fde7a 100644 --- a/library/python/testing/yatest_common/yatest/common/canonical.py +++ b/library/python/testing/yatest_common/yatest/common/canonical.py @@ -202,7 +202,7 @@ def _prepare_args(args): if args is None: args = [] if isinstance(args, six.string_types): - args = map(lambda a: a.strip(), args.split()) + args = list(map(lambda a: a.strip(), args.split())) return args |