correct attr naming

This commit is contained in:
sneakers-the-rat 2024-05-14 20:19:24 -07:00
parent 9b13226164
commit 2b56da6808
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -66,8 +66,8 @@ def test_interface_enabled(interfaces):
"""
An interface shouldn't be included if it's not enabled
"""
assert not interfaces.Interface3.enabled()
assert interfaces.Interface3 not in Interface.interfaces()
assert not interfaces.interface3.enabled()
assert interfaces.interface3 not in Interface.interfaces()
def test_interface_type_lists():