Bug 1608302: Part 3 - Update the content process's service name in ContentDelgateTest; r=geckoview-reviewers,snorp

We'll want to make some changes to this test when we enable e10s-multi by
default, but for now we just need to update the name of the single content
process to reflect the naming changes that were done in part 1 of this
patch series.

Differential Revision: https://phabricator.services.mozilla.com/D65641

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Aaron Klotz 2020-03-10 16:31:47 +00:00
parent 55e1fadd51
commit 5625e42498

View File

@ -178,7 +178,7 @@ class ContentDelegateTest : BaseSessionTest() {
val context = GeckoAppShell.getApplicationContext()
val manager = context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager
for (info in manager.runningAppProcesses) {
if (info.processName.endsWith(":tab")) {
if (info.processName.endsWith(":tab0")) {
Process.killProcess(info.pid)
}
}