From e6a72250282c6a536cd2e9122a513b515af35cb9 Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Thu, 6 May 2021 15:24:35 +0200 Subject: [PATCH] Fix missed perSceneCache rename in test file --- tests/test_configuration.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_configuration.cpp b/tests/test_configuration.cpp index f7c031d251..25aa84be4f 100644 --- a/tests/test_configuration.cpp +++ b/tests/test_configuration.cpp @@ -300,10 +300,10 @@ TEST_CASE("Configuration: onScreenTextScaling", "[configuration]") { CHECK(c.onScreenTextScaling == "framebuffer"); } -TEST_CASE("Configuration: usePerSceneCache", "[configuration]") { - constexpr const char Extra[] = R"(PerSceneCache = true)"; - const Configuration c = loadConfiguration("usePerSceneCache", Extra); - CHECK(c.usePerSceneCache == true); +TEST_CASE("Configuration: usePerProfileCache", "[configuration]") { + constexpr const char Extra[] = R"(PerProfileCache = true)"; + const Configuration c = loadConfiguration("usePerProfileCache", Extra); + CHECK(c.usePerProfileCache == true); } TEST_CASE("Configuration: isRenderingOnMasterDisabled", "[configuration]") {