diff options
| author | 2023-07-25 18:25:20 +0000 | |
|---|---|---|
| committer | 2023-07-25 18:25:20 +0000 | |
| commit | b11daedf1e249c4ba4ca032ecba3109abe0795ef (patch) | |
| tree | 647b080cf112245973ecdf45594f9500975a38d5 | |
| parent | c1c1e6e83e8d49161e85fc1f5ce8128aa47b1091 (diff) | |
| parent | 5da65608206cddeafae2ecf51d0d708c66d740ee (diff) | |
Merge "Fix init list order." into main
| -rw-r--r-- | libs/binder/tests/binderRpcTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/tests/binderRpcTest.cpp b/libs/binder/tests/binderRpcTest.cpp index d352ce5bca..38c7f7cb6f 100644 --- a/libs/binder/tests/binderRpcTest.cpp +++ b/libs/binder/tests/binderRpcTest.cpp @@ -674,7 +674,7 @@ TEST_P(BinderRpc, SessionWithIncomingThreadpoolDoesntLeak) { // session 0 - will check for leaks in destrutor of proc // session 1 - we want to make sure it gets deleted when we drop all references to it auto proc = createRpcTestSocketServerProcess( - {.numThreads = 1, .numIncomingConnectionsBySession = {0, 1}, .numSessions = 2}); + {.numThreads = 1, .numSessions = 2, .numIncomingConnectionsBySession = {0, 1}}); wp<RpcSession> session = proc.proc->sessions.at(1).session; |