Format Java files with google-java-format

Change-Id: I10a987106848d9fc3e4ff50ae2fb9c86201fe33d
This commit is contained in:
Alice Kober-Sotzek
2017-06-09 14:12:11 +02:00
parent 3227396d83
commit e9da662ff2

View File

@@ -323,11 +323,7 @@ public abstract class AbstractPushForReview extends AbstractDaemonTest {
String topic = "my/topic";
PushOneCommit.Result r = pushTo("refs/for/master/" + topic + "%cc=" + user.email);
r.assertOkStatus();
r.assertChange(
Change.Status.NEW,
topic,
ImmutableList.of(),
ImmutableList.of(user));
r.assertChange(Change.Status.NEW, topic, ImmutableList.of(), ImmutableList.of(user));
// cc several users
r =
@@ -343,10 +339,7 @@ public abstract class AbstractPushForReview extends AbstractDaemonTest {
r.assertOkStatus();
// Check that admin isn't CC'd as they own the change
r.assertChange(
Change.Status.NEW,
topic,
ImmutableList.of(),
ImmutableList.of(user, accounts.user2()));
Change.Status.NEW, topic, ImmutableList.of(), ImmutableList.of(user, accounts.user2()));
// cc non-existing user
String nonExistingEmail = "non.existing@example.com";