From b56a877ef8851e53ccc47141b537736db135d389 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 14 Jul 2020 22:18:38 +0200 Subject: [PATCH] test-fs-util: use log_info instead of printf The test is failing in koji, and the line from printf() does not end up in the logs for some reason. log_info() works fine, so let's just use that here too. --- src/test/test-fs-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c index 80c4c209b3f..8d9a1974b24 100644 --- a/src/test/test-fs-util.c +++ b/src/test/test-fs-util.c @@ -858,7 +858,7 @@ static void test_path_is_encrypted_one(const char *p, int expect) { return; assert_se(r >= 0); - printf("%s encrypted: %s\n", p, yes_no(r)); + log_info("%s encrypted: %s", p, yes_no(r)); assert_se(expect < 0 || ((r > 0) == (expect > 0))); } -- 2.39.2