am 17bc02b2: Fix build

* commit '17bc02b23a394a253c76dad67c4dc848e80207a6':
  Fix build
diff --git a/tests/src/com/android/mail/browse/MessageHeaderViewTest.java b/tests/src/com/android/mail/browse/MessageHeaderViewTest.java
index 48d7f8d..f0a201a 100644
--- a/tests/src/com/android/mail/browse/MessageHeaderViewTest.java
+++ b/tests/src/com/android/mail/browse/MessageHeaderViewTest.java
@@ -26,8 +26,8 @@
     public void testRecipientSummaryLongTo() {
         String[] to = makeRecipientArray("TO", 60);
         String[] cc = makeRecipientArray("CC", 60);
-        String summary = MessageHeaderView.getRecipientSummaryText(getContext(), "", to, cc, null,
-                null).toString();
+        String summary = MessageHeaderView.getRecipientSummaryText(getContext(), "", "", to, cc,
+                null, null, null).toString();
 
         assertTrue(summary.contains("TO00"));
         assertTrue(summary.contains("TO49"));
@@ -39,8 +39,8 @@
         String[] to = makeRecipientArray("TO", 20);
         String[] cc = makeRecipientArray("CC", 10);
         String[] bcc = makeRecipientArray("BB", 60);
-        String summary = MessageHeaderView.getRecipientSummaryText(getContext(), "", to, cc, bcc,
-                null).toString();
+        String summary = MessageHeaderView.getRecipientSummaryText(getContext(), "", "", to, cc,
+                bcc, null, null).toString();
 
         assertTrue(summary.contains("TO00"));
         assertTrue(summary.contains("TO19"));