ChecksEmailIT: Fix typos of "Expect"

Change-Id: Ib3f094f89e7594d81b54dc0e4d58c22bed5d42cf
diff --git a/javatests/com/google/gerrit/plugins/checks/acceptance/api/ChecksEmailIT.java b/javatests/com/google/gerrit/plugins/checks/acceptance/api/ChecksEmailIT.java
index e20600b..4b88529 100644
--- a/javatests/com/google/gerrit/plugins/checks/acceptance/api/ChecksEmailIT.java
+++ b/javatests/com/google/gerrit/plugins/checks/acceptance/api/ChecksEmailIT.java
@@ -138,7 +138,7 @@
     checksApiFactory.revision(patchSetId).create(input).get();
     assertThat(getCombinedCheckState()).isEqualTo(CombinedCheckState.FAILED);
 
-    // Except one email because the combined check state was updated.
+    // Expect one email because the combined check state was updated.
     List<Message> messages = sender.getMessages();
     assertThat(messages).hasSize(1);
 
@@ -178,7 +178,7 @@
     checksApiFactory.revision(patchSetId).create(input).get();
     assertThat(getCombinedCheckState()).isEqualTo(CombinedCheckState.FAILED);
 
-    // Except that no email was sent because the combined check state was not updated.
+    // Expect that no email was sent because the combined check state was not updated.
     assertThat(sender.getMessages()).isEmpty();
   }
 
@@ -203,7 +203,7 @@
     checksApiFactory.revision(patchSetId).create(input).get();
     assertThat(getCombinedCheckState()).isEqualTo(CombinedCheckState.IN_PROGRESS);
 
-    // Except one email because the combined check state was updated.
+    // Expect one email because the combined check state was updated.
     List<Message> messages = sender.getMessages();
     assertThat(messages).hasSize(1);
 
@@ -245,7 +245,7 @@
     checksApiFactory.revision(patchSetId).create(input).get();
     assertThat(getCombinedCheckState()).isEqualTo(CombinedCheckState.FAILED);
 
-    // Except that no email was sent because the combined check state was not updated.
+    // Expect that no email was sent because the combined check state was not updated.
     assertThat(sender.getMessages()).isEmpty();
   }