From 546e8e9b3f584bb533906cae895ebaece9cde4eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Mon, 14 Feb 2022 09:29:18 +0000 Subject: [PATCH] idmap2: fix clang-format warnings Bug: N/A Test: frameworks/base/cmds/idmap2/static-checks.sh Test: atest --host idmap2_tests Change-Id: I5cd8d512df188371d4b2096246e51effbcbc1a61 --- cmds/idmap2/tests/Idmap2BinaryTests.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmds/idmap2/tests/Idmap2BinaryTests.cpp b/cmds/idmap2/tests/Idmap2BinaryTests.cpp index 1c82597461894..e1b782972d3c7 100644 --- a/cmds/idmap2/tests/Idmap2BinaryTests.cpp +++ b/cmds/idmap2/tests/Idmap2BinaryTests.cpp @@ -134,19 +134,19 @@ TEST_F(Idmap2BinaryTests, Dump) { ASSERT_EQ(result->status, EXIT_SUCCESS) << result->stderr_str; ASSERT_NE(result->stdout_str.find(StringPrintf("0x%08x -> 0x%08x", R::target::integer::int1, - R::overlay::integer::int1)), + R::overlay::integer::int1)), std::string::npos) << result->stdout_str; ASSERT_NE(result->stdout_str.find(StringPrintf("0x%08x -> 0x%08x", R::target::string::str1, - R::overlay::string::str1)), + R::overlay::string::str1)), std::string::npos) << result->stdout_str; ASSERT_NE(result->stdout_str.find(StringPrintf("0x%08x -> 0x%08x", R::target::string::str3, - R::overlay::string::str3)), + R::overlay::string::str3)), std::string::npos) << result->stdout_str; ASSERT_NE(result->stdout_str.find(StringPrintf("0x%08x -> 0x%08x", R::target::string::str4, - R::overlay::string::str4)), + R::overlay::string::str4)), std::string::npos) << result->stdout_str;