diff options
| author | 2021-08-22 20:40:18 -0700 | |
|---|---|---|
| committer | 2021-08-22 20:40:18 -0700 | |
| commit | f65f8b909773ba79f54423c7d5d5eb1653cb7733 (patch) | |
| tree | 3e851ea4e3bf6a353dba89029ab087709d33e366 /src/tests/common/param_package.cpp | |
| parent | Merge pull request #6904 from Morph1984/lang-settings-range (diff) | |
| parent | logging: Simplify and make thread-safe (diff) | |
| download | yuzu-f65f8b909773ba79f54423c7d5d5eb1653cb7733.tar.gz yuzu-f65f8b909773ba79f54423c7d5d5eb1653cb7733.tar.xz yuzu-f65f8b909773ba79f54423c7d5d5eb1653cb7733.zip | |
Merge pull request #6869 from yzct12345/shiny-logs-in-the-fireplace
logging: Simplify and make thread-safe
Diffstat (limited to 'src/tests/common/param_package.cpp')
| -rw-r--r-- | src/tests/common/param_package.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/common/param_package.cpp b/src/tests/common/param_package.cpp index 4c0f9654f..e31ca3544 100644 --- a/src/tests/common/param_package.cpp +++ b/src/tests/common/param_package.cpp | |||
| @@ -4,11 +4,13 @@ | |||
| 4 | 4 | ||
| 5 | #include <catch2/catch.hpp> | 5 | #include <catch2/catch.hpp> |
| 6 | #include <math.h> | 6 | #include <math.h> |
| 7 | #include "common/logging/backend.h" | ||
| 7 | #include "common/param_package.h" | 8 | #include "common/param_package.h" |
| 8 | 9 | ||
| 9 | namespace Common { | 10 | namespace Common { |
| 10 | 11 | ||
| 11 | TEST_CASE("ParamPackage", "[common]") { | 12 | TEST_CASE("ParamPackage", "[common]") { |
| 13 | Common::Log::DisableLoggingInTests(); | ||
| 12 | ParamPackage original{ | 14 | ParamPackage original{ |
| 13 | {"abc", "xyz"}, | 15 | {"abc", "xyz"}, |
| 14 | {"def", "42"}, | 16 | {"def", "42"}, |