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

Commit 36c3880b authored by Alex Chau's avatar Alex Chau
Browse files

Fix ReorderAlgorithmUnitTest not restoring numRows properly

Fix: 289191222
Test: ReorderAlgorithmUnitTest
Change-Id: I4e8a8afc6bd043c3983b19220bca0e50c26eab69
parent 3fb9456e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ public class ReorderAlgorithmUnitTest {
        Context c = new ActivityContextWrapper(getApplicationContext());
        DeviceProfile dp = InvariantDeviceProfile.INSTANCE.get(c).getDeviceProfile(c).copy(c);
        mPrevNumColumns = dp.inv.numColumns;
        mPrevNumRows = dp.inv.numColumns;
        mPrevNumRows = dp.inv.numRows;
    }

    @After