From 7d266c64cd064028f4fbbf5c568003abf23ea50f Mon Sep 17 00:00:00 2001 From: Ashod Nakashian Date: Wed, 10 Apr 2024 12:51:27 -0400 Subject: [PATCH] wsd: test: move single-use local map Change-Id: I02e654b060415e5dda32ffafcdc19f8edfd86a62 Signed-off-by: Ashod Nakashian --- test/FileServeWhiteBoxTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/FileServeWhiteBoxTests.cpp b/test/FileServeWhiteBoxTests.cpp index f8d045ffc9..a48d29a65b 100644 --- a/test/FileServeWhiteBoxTests.cpp +++ b/test/FileServeWhiteBoxTests.cpp @@ -437,7 +437,7 @@ void FileServeTests::testPreProcessedFileSubstitution() { "BUYPRODUCT_URL", "https://buy.ourproduct.com/'" } }; - preProcessedFileSubstitution(testname, variables); + preProcessedFileSubstitution(testname, std::move(variables)); preProcessedFileSubstitution(std::string(testname) + "_empty", std::unordered_map()); }