[cli] service and server data as hex-encoded binary values (#5556)

This commit is contained in:
Jonathan Hui
2020-09-21 08:46:50 -07:00
committed by GitHub
parent f974f38155
commit 0683f78e17
4 changed files with 66 additions and 81 deletions
+4 -4
View File
@@ -39,13 +39,13 @@ ROUTER2 = 3
SRV_0_ID = 0
SRV_0_ENT_NUMBER = '123'
SRV_0_SERVICE_DATA = 'foo'
SRV_0_SERVER_DATA = 'bar'
SRV_0_SERVICE_DATA = '123'
SRV_0_SERVER_DATA = 'abc'
SRV_1_ID = 1
SRV_1_ENT_NUMBER = '234'
SRV_1_SERVICE_DATA = 'baz'
SRV_1_SERVER_DATA = 'qux'
SRV_1_SERVICE_DATA = '456'
SRV_1_SERVER_DATA = 'def'
class Test_Service(thread_cert.TestCase):