diff --git a/tests/test_driver.py b/tests/test_driver.py index ddca5570..9f34c1af 100644 --- a/tests/test_driver.py +++ b/tests/test_driver.py @@ -37,7 +37,7 @@ def test_channels_property(self, c_names): # This should simply return a list of the available # channels - assert driver.channels == c_names + assert set(driver.channels) == set(c_names) # This attribute should be read only with raises(AttributeError) as err: