Move iot fixtures into iot subfolder (#1299)

This commit is contained in:
Steven B.
2024-11-22 20:19:33 +00:00
committed by GitHub
parent c5830a4cdc
commit f4316110c9
78 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ FixtureInfo.__eq__ = lambda x, y: hash(x) == hash(y) # type: ignore[method-assi
SUPPORTED_IOT_DEVICES = [
(device, "IOT")
for device in glob.glob(
os.path.dirname(os.path.abspath(__file__)) + "/fixtures/*.json"
os.path.dirname(os.path.abspath(__file__)) + "/fixtures/iot/*.json"
)
]