On Mon, Mar 2, 2026 at 1:55 PM Andrew Bailey <[email protected]> wrote: > > + > +@requires_link_topology(LinkTopology.NO_LINK) > +class TestCryptodevThroughput(TestSuite): > + """DPDK Crypto Device Testing Suite.""" > + > + config: Config > + > + def set_up_suite(self) -> None: > + """Set up the test suite.""" > + self.throughput_test_parameters: dict[str, list[dict[str, int | > float | str]]] = ( > + self.config.throughput_test_parameters > + ) > + self.delta_tolerance: float = self.config.delta_tolerance > + self.driver: DeviceType | None = get_device_from_str(
does it make sense to change this to self.device_type to keep the naming aligned?

