Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed May 28, 2024
1 parent b63d33d commit 7ffb0de
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions tests/create-voice-effect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct VTestConfig
std::array<float, 256> fb{};
std::array<int, 256> ib{};
};
static constexpr int blockSize{16};
static constexpr size_t blockSize{16};
static void setFloatParam(BaseClass *b, int i, float f) { b->fb[i] = f; }
static float getFloatParam(const BaseClass *b, int i) { return b->fb[i]; }

Expand Down Expand Up @@ -159,12 +159,6 @@ TEST_CASE("Can Create Voice FX")
{
VTester<sst::voice_effects::filter::StaticPhaser<VTestConfig>>::TestVFX();
}
SECTION("Tremolo")
{
VTester<sst::voice_effects::modulation::Tremolo<VTestConfig>>::TestVFX();
}
SECTION("Phaser")
{
VTester<sst::voice_effects::modulation::Phaser<VTestConfig>>::TestVFX();
}
SECTION("Tremolo") { VTester<sst::voice_effects::modulation::Tremolo<VTestConfig>>::TestVFX(); }
SECTION("Phaser") { VTester<sst::voice_effects::modulation::Phaser<VTestConfig>>::TestVFX(); }
}

0 comments on commit 7ffb0de

Please sign in to comment.