diff --git a/Tests/PluginBasics.cpp b/Tests/PluginBasics.cpp index 77e387b..61df106 100644 --- a/Tests/PluginBasics.cpp +++ b/Tests/PluginBasics.cpp @@ -10,7 +10,7 @@ TEST_CASE ("one is equal to one", "[dummy]") TEST_CASE ("Plugin instance", "[instance]") { - PluginProcessor testPlugin; + FireAudioProcessor testPlugin; // This lets us use JUCE's MessageManager without leaking. // PluginProcessor might need this if you use the APVTS for example. @@ -20,7 +20,7 @@ TEST_CASE ("Plugin instance", "[instance]") SECTION ("name") { CHECK_THAT (testPlugin.getName().toStdString(), - Catch::Matchers::Equals ("Pamplejuce Demo")); + Catch::Matchers::Equals ("Fire")); } } diff --git a/Tests/helpers/test_helpers.h b/Tests/helpers/test_helpers.h index 1292fc3..dc28856 100644 --- a/Tests/helpers/test_helpers.h +++ b/Tests/helpers/test_helpers.h @@ -19,9 +19,9 @@ }); */ -[[maybe_unused]] void runWithinPluginEditor (const std::function& testCode) +[[maybe_unused]] void runWithinPluginEditor (const std::function& testCode) { - PluginProcessor plugin; + FireAudioProcessor plugin; auto gui = juce::ScopedJuceInitialiser_GUI {}; auto editor = plugin.createEditorIfNeeded();