From 72b07080852511128b1edc774b2fee1a739bebdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Duda?= Date: Tue, 21 May 2019 17:32:46 +0200 Subject: [PATCH] [thci] correct conversion of IPv6 prefix (#3846) --- tools/harness-thci/OpenThread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/harness-thci/OpenThread.py b/tools/harness-thci/OpenThread.py index 99a4f5e6e..0c785c83e 100644 --- a/tools/harness-thci/OpenThread.py +++ b/tools/harness-thci/OpenThread.py @@ -500,7 +500,7 @@ class OpenThread(IThci): finalMac = ':'.join(a + b + c + d for a,b,c,d in zip(hexIter, hexIter,hexIter,hexIter)) prefix = str(finalMac) strIp6Prefix = prefix[:20] - return strIp6Prefix +':' + return strIp6Prefix +'::' def __convertLongToString(self, iValue): """convert a long hex integer to string