summaryrefslogtreecommitdiff
path: root/libnativebridge/tests/CompleteFlow_test.cpp
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2024-07-07 16:04:44 +0100
committer Roland Levillain <rpl@google.com> 2024-07-09 14:15:21 +0000
commit270cdb2befd4fd5e4af697700f84eca25016aa4c (patch)
tree65eabc1684cec33e5fccf1dc4773ce2b62dc437e /libnativebridge/tests/CompleteFlow_test.cpp
parenta8e94b7dda00ced868f6c5e91af5234eea332b00 (diff)
Style changes in `libnativebridge-tests`.
This is a follow-up to https://android-review.git.corp.google.com/c/platform/art/+/3080063. Test: atest --host libnativebridge-tests Test: atest libnativebridge-tests Bug: 189484095 Flag: TEST_ONLY Change-Id: I8d30747d8713e9c1d29e08758df7c7d9d68e2846
Diffstat (limited to 'libnativebridge/tests/CompleteFlow_test.cpp')
-rw-r--r--libnativebridge/tests/CompleteFlow_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnativebridge/tests/CompleteFlow_test.cpp b/libnativebridge/tests/CompleteFlow_test.cpp
index a4a6f20df9..24f255699c 100644
--- a/libnativebridge/tests/CompleteFlow_test.cpp
+++ b/libnativebridge/tests/CompleteFlow_test.cpp
@@ -24,7 +24,7 @@ TEST_F(NativeBridgeTest, CompleteFlow) {
// Init
ASSERT_TRUE(LoadNativeBridge(kNativeBridgeLibrary, nullptr));
ASSERT_TRUE(NativeBridgeAvailable());
- ASSERT_TRUE(PreInitializeNativeBridge(appDataDir(), "isa"));
+ ASSERT_TRUE(PreInitializeNativeBridge(AppDataDir(), "isa"));
ASSERT_TRUE(NativeBridgeAvailable());
ASSERT_TRUE(InitializeNativeBridge(nullptr, nullptr));
ASSERT_TRUE(NativeBridgeAvailable());
@@ -41,7 +41,7 @@ TEST_F(NativeBridgeTest, CompleteFlow) {
ASSERT_FALSE(NativeBridgeError());
// Clean-up code_cache
- ASSERT_EQ(0, rmdir(codeCache()));
+ ASSERT_EQ(0, rmdir(CodeCache()));
}
} // namespace android