From f360e1839a8bca80d2b34e7c90ac04f089061792 Mon Sep 17 00:00:00 2001 From: FrogTheFrog Date: Sat, 11 Jan 2025 23:18:55 +0200 Subject: [PATCH] update the formatter... --- tests/unit/test_display_device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_display_device.cpp b/tests/unit/test_display_device.cpp index 57990827ec9..bf469464d2a 100644 --- a/tests/unit/test_display_device.cpp +++ b/tests/unit/test_display_device.cpp @@ -488,8 +488,8 @@ namespace { EXPECT_NO_THROW(std::get(result)); } else { - const auto& [expected_resolution, expected_refresh_rate] = std::get(expected_value); - const auto& parsed_config = std::get(result); + const auto &[expected_resolution, expected_refresh_rate] = std::get(expected_value); + const auto &parsed_config = std::get(result); EXPECT_EQ(parsed_config.m_resolution, expected_resolution); EXPECT_EQ(parsed_config.m_refresh_rate, expected_refresh_rate ? std::make_optional(display_device::FloatingPoint { *expected_refresh_rate }) : std::nullopt);