diff --git a/HellionChat/Plugin.cs b/HellionChat/Plugin.cs index 91f258a..c8d4cd3 100755 --- a/HellionChat/Plugin.cs +++ b/HellionChat/Plugin.cs @@ -456,7 +456,7 @@ public sealed class Plugin : IDalamudPlugin // SelfTest hooks live alongside the live registry — the steps // poll Active per frame and need the registry already wired. SelfTestRegistry.RegisterTestSteps([ - new SelfTest.ThemeSwitchSelfTestStep(this), + new SelfTests.ThemeSwitchSelfTestStep(this), ]); // Plugin integrations register their IPC subscribers up-front so diff --git a/HellionChat/SelfTest/ThemeSwitchSelfTestStep.cs b/HellionChat/SelfTests/ThemeSwitchSelfTestStep.cs similarity index 98% rename from HellionChat/SelfTest/ThemeSwitchSelfTestStep.cs rename to HellionChat/SelfTests/ThemeSwitchSelfTestStep.cs index 49e4d33..2676511 100644 --- a/HellionChat/SelfTest/ThemeSwitchSelfTestStep.cs +++ b/HellionChat/SelfTests/ThemeSwitchSelfTestStep.cs @@ -2,7 +2,7 @@ using Dalamud.Bindings.ImGui; using Dalamud.Plugin.SelfTest; using HellionChat.Themes; -namespace HellionChat.SelfTest; +namespace HellionChat.SelfTests; // Validates the runtime theme-switch contract from the user side. The // caller toggles the active theme via Settings -> Theme & Layout, the