Remove reference to AccountPersonalInformation

The AcountPersonalInformation isn't used anymore when removing
the account and thus can be safely removed.

Change-Id: I48a600191274917e64929ff96a687414bb11b57f
diff --git a/src/test/java/com/gerritforge/gerrit/plugins/account/test/DeleteAccountCommandTest.java b/src/test/java/com/gerritforge/gerrit/plugins/account/test/DeleteAccountCommandTest.java
index f8fcb38..a794336 100644
--- a/src/test/java/com/gerritforge/gerrit/plugins/account/test/DeleteAccountCommandTest.java
+++ b/src/test/java/com/gerritforge/gerrit/plugins/account/test/DeleteAccountCommandTest.java
@@ -20,7 +20,6 @@
 import static org.mockito.Mockito.verify;
 import static org.mockito.Mockito.when;
 
-import com.gerritforge.gerrit.plugins.account.AccountPersonalInformation;
 import com.gerritforge.gerrit.plugins.account.AccountResourceFactory;
 import com.gerritforge.gerrit.plugins.account.DeleteAccount;
 import com.gerritforge.gerrit.plugins.account.DeleteAccountCommand;
@@ -52,8 +51,7 @@
     deleteAccountCommand = new DeleteAccountCommand(accountFactoryMock, deleteAccountMock);
     deleteAccountCommand.setPrintWriters(
         new PrintWriter(new ByteArrayOutputStream()), new PrintWriter(new ByteArrayOutputStream()));
-    DeleteAccountResponse resp =
-        new DeleteAccountResponse(true, new AccountPersonalInformation(userMock));
+    DeleteAccountResponse resp = new DeleteAccountResponse(true);
     when(deleteAccountMock.apply(same(accountResourceMock), any(DeleteAccount.Input.class)))
         .thenReturn(resp);
   }