AbstractPushForReview: Remove unnecessary semicolon

Change-Id: I6e56d561069a5ce850209bdaaa117a5a2623c85f
This commit is contained in:
David Ostrovsky
2020-01-10 21:58:21 +01:00
parent 0032a40953
commit c3eb64a0a5

View File

@@ -2056,7 +2056,7 @@ public abstract class AbstractPushForReview extends AbstractDaemonTest {
/* Assert the tags - PS#2 comments do not have tags, PS#3 upload is autogenerated */
List<String> messagesTags = allMessages.stream().map(m -> m.tag).collect(toList());
;
assertThat(messagesTags.get(2)).isEqualTo("autogenerated:gerrit:newPatchSet");
assertThat(messagesTags.get(3)).isNull();