From 30e8aac754c5cd14fedde8553247d3e41bc3c06d Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 29 Apr 2020 12:06:33 +0900 Subject: [PATCH] tests: subsys: canbus: frame: Remove redundant logging configurations This commit removes the redundant `LOG` and `LOG_IMMEDIATE` selections in `prj.conf`, since the `TEST_LOGGING_DEFAULTS`, which is enabled by default for all tests, selects `LOG` and `LOG_MINIMAL`. This effectively allows the test to run with the default test logging policy, set by the testing subsystem. Signed-off-by: Stephanos Ioannidis --- tests/subsys/canbus/frame/prj.conf | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/subsys/canbus/frame/prj.conf b/tests/subsys/canbus/frame/prj.conf index 46bc4c8f17f..9467c292689 100644 --- a/tests/subsys/canbus/frame/prj.conf +++ b/tests/subsys/canbus/frame/prj.conf @@ -1,3 +1 @@ CONFIG_ZTEST=y -CONFIG_LOG=y -CONFIG_LOG_IMMEDIATE=y