diff options
author | 2022-02-14 09:29:18 +0000 | |
---|---|---|
committer | 2022-02-14 09:29:18 +0000 | |
commit | 546e8e9b3f584bb533906cae895ebaece9cde4eb (patch) | |
tree | 58bf08823bf2f3fc75a7e4552860fbb05d4866e6 | |
parent | b1da35eb6c0b64bf9bce2e1615e2e441105555ea (diff) |
idmap2: fix clang-format warnings
Bug: N/A
Test: frameworks/base/cmds/idmap2/static-checks.sh
Test: atest --host idmap2_tests
Change-Id: I5cd8d512df188371d4b2096246e51effbcbc1a61
-rw-r--r-- | cmds/idmap2/tests/Idmap2BinaryTests.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmds/idmap2/tests/Idmap2BinaryTests.cpp b/cmds/idmap2/tests/Idmap2BinaryTests.cpp index 1c8259746189..e1b782972d3c 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; |