Commit a23a322e authored by Daniel Xie's avatar Daniel Xie Committed by Android (Google) Code Review
Browse files

Merge "Fixed the order of parameters passing" into lmp-mr1-dev

parents d3f51b0e b2f7f8ae
......@@ -135,8 +135,8 @@ public class ActivityManagerMemoryClassTest
}
private void assertMemoryForScreenDensity(int memoryClass, int screenDensity, int screenSize) {
int expectedMinimumMemory = ExpectedMemorySizesClass.getExpectedMemorySize(screenDensity,
screenSize);
int expectedMinimumMemory = ExpectedMemorySizesClass.getExpectedMemorySize(screenSize,
screenDensity);
assertTrue("Expected to have at least " + expectedMinimumMemory
+ "mb of memory for screen density " + screenDensity,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment