Fix a couple of incorrect test names

This commit is contained in:
Oliver Hamlet
2025-04-30 08:39:03 +01:00
parent b99616089e
commit 90c993089d
@@ -106,9 +106,8 @@ TEST_P(GameInterfaceTest, isValidPluginShouldReturnFalseForAnEmptyFile) {
EXPECT_FALSE(handle_->IsValidPlugin(emptyFile));
}
TEST_P(
GameInterfaceTest,
loadPluginsWithHeadersOnlyTrueShouldLoadTheHeadersOfAllGivenPlugins) {
TEST_P(GameInterfaceTest,
loadPluginsWithHeadersOnlyTrueShouldLoadTheHeadersOfAllGivenPlugins) {
handle_->LoadPlugins(pluginsToLoad, true);
if (GetParam() == GameType::starfield) {
EXPECT_EQ(6, handle_->GetLoadedPlugins().size());
@@ -245,14 +244,14 @@ TEST_P(GameInterfaceTest, sortPluginsShouldSucceedIfPassedValidArguments) {
}
TEST_P(GameInterfaceTest,
isPluginActiveShouldReturnFalseIfTheGivenPluginIsNotActive) {
isPluginActiveShouldReturnTrueIfTheGivenPluginIsActive) {
handle_->LoadCurrentLoadOrderState();
EXPECT_TRUE(handle_->IsPluginActive(blankEsm));
}
TEST_P(GameInterfaceTest,
isPluginActiveShouldReturnTrueIfTheGivenPluginIsActive) {
isPluginActiveShouldReturnFalseIfTheGivenPluginIsNotActive) {
handle_->LoadCurrentLoadOrderState();
EXPECT_FALSE(handle_->IsPluginActive(blankEsp));
}