From 13c4179cffa3f3e7001b4d33ac9a3725f027c913 Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Fri, 28 Apr 2023 16:31:08 +0200 Subject: [PATCH] fix clang-format --- apps/mwiniimporter_tests/main.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/apps/mwiniimporter_tests/main.cpp b/apps/mwiniimporter_tests/main.cpp index 1005a698e6..43558515a3 100644 --- a/apps/mwiniimporter_tests/main.cpp +++ b/apps/mwiniimporter_tests/main.cpp @@ -4,24 +4,18 @@ #include #include - struct TestParam { std::string name; std::string fileName; }; -const std::vector testParams = { - { "ascii", "ascii" }, - { "unicode", "(╯°□°)╯︵ ┻━┻"}, - { "emoji", "💩"} -}; +const std::vector testParams = { { "ascii", "ascii" }, { "unicode", "(╯°□°)╯︵ ┻━┻" }, { "emoji", "💩" } }; class IniImporterTest : public ::testing::TestWithParam { }; - TEST_P(IniImporterTest, TestIniImport) { auto param = IniImporterTest::GetParam(); @@ -64,7 +58,6 @@ fallback-archive=game2.bsa INSTANTIATE_TEST_SUITE_P(IniImporterTests, IniImporterTest, ::testing::ValuesIn(testParams)); - int main(int argc, char* argv[]) { testing::InitGoogleTest(&argc, argv);