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);