diff options
Diffstat (limited to 'mpm/tests/tests_device.hpp')
-rw-r--r-- | mpm/tests/tests_device.hpp | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/mpm/tests/tests_device.hpp b/mpm/tests/tests_device.hpp index 390575178..75cc05b95 100644 --- a/mpm/tests/tests_device.hpp +++ b/mpm/tests/tests_device.hpp @@ -4,20 +4,19 @@ // SPDX-License-Identifier: GPL-3.0-or-later // -#include <mpm/tests/tests_spi_iface.hpp> #include <mpm/spi_iface.hpp> +#include <mpm/tests/tests_spi_iface.hpp> #include <memory> namespace mpm { namespace tests { - class tests_dboard_periph_manager - { - public: - typedef std::shared_ptr<tests_dboard_periph_manager> sptr; - static sptr make(); +class tests_dboard_periph_manager +{ +public: + typedef std::shared_ptr<tests_dboard_periph_manager> sptr; + static sptr make(); - private: - mpm::spi_iface::sptr _dev1_spi; - mpm::spi_iface::sptr _dev2_spi; - }; -} -} +private: + mpm::spi_iface::sptr _dev1_spi; + mpm::spi_iface::sptr _dev2_spi; +}; +}} // namespace mpm::tests |