Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 47711849 authored by Zhi Dou's avatar Zhi Dou
Browse files

Change test parameter

The change test parameter from isPlatform={0} to isPlatform_{0}, since
the atest cannot recognize = sign.

Test: presubmit AconfigPerfTests
Bug: 383740537
Change-Id: I7b6dd25b948504bf0aca5f2b503ce00e9d92b916
parent e0fa880b
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ public class AconfigPackagePerfTest {

    @Rule public PerfStatusReporter mPerfStatusReporter = new PerfStatusReporter();

    @Parameterized.Parameters(name = "isPlatform={0}")
    @Parameterized.Parameters(name = "isPlatform_{0}")
    public static Collection<Object[]> data() {
        return Arrays.asList(new Object[][] {{false}, {true}});
    }
@@ -60,10 +60,9 @@ public class AconfigPackagePerfTest {
        }
    }

    @Parameterized.Parameter(0)

    // if this variable is true, then the test query flags from system/product/vendor
    // if this variable is false, then the test query flags from updatable partitions
    @Parameterized.Parameter(0)
    public boolean mIsPlatform;

    @Test