Fix Exchange units

Change-Id: I84da7fab150e938033335694abf854932e3f7a09
diff --git a/tests/src/com/android/exchange/provider/ExchangeDirectoryProviderTests.java b/tests/src/com/android/exchange/provider/ExchangeDirectoryProviderTests.java
index e4bd791..a13bd20 100644
--- a/tests/src/com/android/exchange/provider/ExchangeDirectoryProviderTests.java
+++ b/tests/src/com/android/exchange/provider/ExchangeDirectoryProviderTests.java
@@ -56,7 +56,7 @@
         result.addGalData(4, "Dan Dolphin", "dan@dolphin.com");
         // Make sure our returned cursor has the expected contents
         ExchangeDirectoryProvider provider = new ExchangeDirectoryProvider();
-        Cursor c = provider.buildGalResultCursor(GAL_RESULT_PROJECTION, result);
+        Cursor c = provider.buildGalResultCursor(GAL_RESULT_PROJECTION, result, false, null);
         assertNotNull(c);
         assertEquals(MatrixCursor.class, c.getClass());
         assertEquals(4, c.getCount());
@@ -99,7 +99,7 @@
         GalResult result = getTestDisplayNameResult();
         // Make sure our returned cursor has the expected contents
         ExchangeDirectoryProvider provider = new ExchangeDirectoryProvider();
-        Cursor c = provider.buildGalResultCursor(GAL_RESULT_PROJECTION, result);
+        Cursor c = provider.buildGalResultCursor(GAL_RESULT_PROJECTION, result, false, null);
         assertNotNull(c);
         assertEquals(MatrixCursor.class, c.getClass());
         assertEquals(DISPLAY_NAME_TEST_FIELDS.length, c.getCount());
@@ -113,7 +113,7 @@
         GalResult result = getTestDisplayNameResult();
         // Make sure our returned cursor has the expected contents
         ExchangeDirectoryProvider provider = new ExchangeDirectoryProvider();
-        Cursor c = provider.buildGalResultCursor(GAL_RESULT_PROJECTION, result);
+        Cursor c = provider.buildGalResultCursor(GAL_RESULT_PROJECTION, result, false, null);
         assertNotNull(c);
         assertEquals(MatrixCursor.class, c.getClass());
         assertEquals(DISPLAY_NAME_TEST_FIELDS.length, c.getCount());