From d14ccebc598134a54387eec3938cbbb5eaaf09de Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Wed, 22 Dec 2021 14:26:04 +0000 Subject: [PATCH] L2SS-456: Use list assertion --- .../tangostationcontrol/integration_test/devices/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py b/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py index b66844a18..3e6fa389a 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py @@ -60,7 +60,7 @@ class AbstractTestBases: """Test if any attributes are missing from opcua devices""" if isinstance(self.proxy, opcua_device): - self.assertEqual(len(self.proxy.opcua_missing_attributes_R), 0) + self.self.assertListEqual([], self.proxy.opcua_missing_attributes_R) def test_device_on(self): """Test if we can transition to on""" -- GitLab