From 87f169a6c125c1b9ac46f9d6da6b2aaefb77bd6e Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 26 Jan 2020 21:16:32 +0100 Subject: [PATCH] Updated the test for the default_path test case --- tests/FilesT.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/FilesT.cpp b/tests/FilesT.cpp index c37fee04..632926c5 100644 --- a/tests/FilesT.cpp +++ b/tests/FilesT.cpp @@ -488,8 +488,9 @@ TEST_CASE("[Files] Case sentitiveness") { sfz::Synth synth; synth.loadSfzFile(fs::current_path() / "tests/TestFiles/case_insensitive.sfz"); - REQUIRE(synth.getNumRegions() == 3); + REQUIRE(synth.getNumRegions() == 4); REQUIRE(synth.getRegionView(0)->sample == "dummy1.wav"); REQUIRE(synth.getRegionView(1)->sample == "Regions/dummy.wav"); REQUIRE(synth.getRegionView(2)->sample == "Regions/dummy.wav"); + REQUIRE(synth.getRegionView(3)->sample == "Regions/dummy.wav"); }