mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-14 20:22:00 +00:00
Bug 847916 - Reduce normal logging in robocop testBrowserProvider; r=rnewman
This commit is contained in:
parent
3b829dd6ba
commit
394ee8c644
@ -942,8 +942,10 @@ public class testBrowserProvider extends ContentProviderTest {
|
||||
while (!c.isAfterLast()) {
|
||||
String guid = c.getString(guidColumn);
|
||||
long pos = c.getLong(posColumn);
|
||||
mAsserter.is(pos, (long) i, "Position matches sequence.");
|
||||
mAsserter.is(guid, items[i], "GUID matches sequence.");
|
||||
if ((pos != i) || (guid == null) || (!guid.equals(items[i]))) {
|
||||
mAsserter.is(pos, (long) i, "Position matches sequence.");
|
||||
mAsserter.is(guid, items[i], "GUID matches sequence.");
|
||||
}
|
||||
++i;
|
||||
c.moveToNext();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user