reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 63e6a6518815fdf505037cae6aa20b52b93eb2b3
parent bf78737c596b04b12e44540ff2a846d2a2999764
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Sun,  8 Sep 2019 15:34:54 -0400

fix a test doing pointer comparison rather than string comparison

Diffstat:
Mtest/package.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/package.cpp b/test/package.cpp @@ -27,7 +27,7 @@ TEST_CASE("package type from string", M) { } TEST_CASE("package type to string", M) { - constexpr std::pair<Package::Type, const char *> tests[] { + const std::pair<Package::Type, std::string> tests[] { {Package::UnknownType, "Unknown"}, {Package::ScriptType, "Script"}, {Package::ExtensionType, "Extension"},