tests/eina: use #ifdef guard for block which can only occur inside ifdef

this value is set in the corresponding #ifdef block above, so use the same
guard here to make code more readable

CID 1400948

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D10321
This commit is contained in:
Mike Blumenkrantz 2019-10-09 13:20:43 -04:00 committed by Cedric BAIL
parent 1a621c9109
commit 72be0842ab
1 changed files with 2 additions and 2 deletions

View File

@ -336,7 +336,7 @@ EFL_START_TEST(eina_log_level_indexes)
EINA_LOG(d, -1, "Negative index message");
fail_if(ctx.did);
}
#ifdef EINA_LOG_LEVEL_MAXIMUM
if (6 <= maxlevel)
{
// Displayed only if user sets level 6 or higher
@ -345,7 +345,7 @@ EFL_START_TEST(eina_log_level_indexes)
EINA_LOG(d, 6, "Higher level debug");
fail_unless(ctx.did);
}
#endif
if (5 <= maxlevel)
{
eina_log_domain_level_set("Levels", 5);