From 032bf31a1d0d05c7f110f8a6fe49a8ead1678c1d Mon Sep 17 00:00:00 2001 From: Joakim Eriksson Date: Thu, 30 Nov 2017 09:53:09 +0100 Subject: [PATCH] removed some not needed test printouts for lwm2m regression test --- tests/18-coap-lwm2m/pytests/test-device.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/18-coap-lwm2m/pytests/test-device.py b/tests/18-coap-lwm2m/pytests/test-device.py index 84147d2f5..9c441e4a0 100644 --- a/tests/18-coap-lwm2m/pytests/test-device.py +++ b/tests/18-coap-lwm2m/pytests/test-device.py @@ -64,8 +64,6 @@ print "Code:", r.getCode(), r.getCode().getName() == "CONTENT" print "Objects: ", client.links print "Read Manufacturer => ", client.read("3/0/0") print "Read Device => ", client.readTLV("3/0/") -print "Write Manufacturer => ", client.write(3, 0, 0, "abc") -print "Exe Manufacturer => ", client.execute("3/0/0") suite = unittest.TestLoader().loadTestsFromTestCase(TestDevice) unittest.TextTestRunner(verbosity=2).run(suite)