Add new field to mailbox test

there's a new field in the mailbox class that was causing a unit test failure.

bug 4552358

Change-Id: Id17a99b55248cdc9e4c5ea455506f72e52687599
This commit is contained in:
Todd Kennedy 2011-06-09 10:14:52 -07:00
parent b4f6404cd1
commit 7984aa60a0
1 changed files with 5 additions and 2 deletions

View File

@ -522,6 +522,7 @@ public class MailboxTests extends ProviderTestCase2<EmailProvider> {
testMailbox.mType = 7;
testMailbox.mVisibleLimit = 8;
testMailbox.mLastSeenMessageKey = 9L;
testMailbox.mLastTouchedTime = 10L;
return testMailbox;
}
@ -537,7 +538,8 @@ public class MailboxTests extends ProviderTestCase2<EmailProvider> {
TEST_PARENT_SERVER_ID, 1L /*mAccountKey*/, 7 /*mType */,
(int)'/' /*mDelimiter */, TEST_SYNC_KEY, 5 /*mSyncLookback*/,
4 /*mSyncInterval*/, 6L /*mSyncTime*/, true /*mFlagVisible*/, 2 /*mFlags*/,
8 /*mVisibleLimit*/, TEST_SYNC_STATUS, 3L /*mParentKey*/, 9L /*mLastSeen*/
8 /*mVisibleLimit*/, TEST_SYNC_STATUS, 3L /*mParentKey*/, 9L /*mLastSeen*/,
10L /*mLastTouchedTime*/,
};
MoreAsserts.assertEquals(testHash, testMailbox.getHashes());
@ -554,7 +556,8 @@ public class MailboxTests extends ProviderTestCase2<EmailProvider> {
null /*mParentServerId*/, 1L /*mAccountKey*/, 7 /*mType */,
(int)'/' /*mDelimiter */, null /*mSyncKey*/, 5 /*mSyncLookback*/,
4 /*mSyncInterval*/, 6L /*mSyncTime*/, false /*mFlagVisible*/, 2 /*mFlags*/,
8 /*mVisibleLimit*/, null /*mSyncStatus*/, 3L /*mParentKey*/, 9L /*mLastSeen*/
8 /*mVisibleLimit*/, null /*mSyncStatus*/, 3L /*mParentKey*/, 9L /*mLastSeen*/,
10L /*mLastTouchedTime*/,
};
MoreAsserts.assertEquals(testHash, testMailbox.getHashes());
}