]> WPIA git - gigi.git/blobdiff - tests/club/wpia/gigi/pages/account/TestCertificateRequest.java
chg: remove unused local variables
[gigi.git] / tests / club / wpia / gigi / pages / account / TestCertificateRequest.java
index da580ccf48cae58a5d4aac3db449dc5cb553266b..03c9a8d136c666bf507a98457b67c7ea801bbfd2 100644 (file)
@@ -95,8 +95,8 @@ public class TestCertificateRequest extends ClientTest {
     public void testPingPeriodOneAddress() throws IOException, GeneralSecurityException, GigiApiException {
         // get new email address with last ping in past
         String furtherEmail = createUniqueName() + "@example.org";
-        EmailAddress ea = new EmailAddress(u, furtherEmail, Locale.ENGLISH);
-        TestMail mail = getMailReceiver().receive(furtherEmail);
+        new EmailAddress(u, furtherEmail, Locale.ENGLISH);
+        getMailReceiver().receive(furtherEmail);
         try (GigiPreparedStatement stmt = new GigiPreparedStatement("UPDATE `emailPinglog` SET `status`='success'::`pingState`, `when` = (now() - interval '1 months' * ?::INTEGER) WHERE `email`=? ")) {
             stmt.setInt(1, TimeConditions.getInstance().getEmailPingMonths());
             stmt.setString(2, furtherEmail);
@@ -118,8 +118,8 @@ public class TestCertificateRequest extends ClientTest {
     public void testPingPeriodTwoAddresses() throws IOException, GeneralSecurityException, GigiApiException {
         // get new email address with last ping in past
         String furtherEmail = createUniqueName() + "@example.org";
-        EmailAddress ea = new EmailAddress(u, furtherEmail, Locale.ENGLISH);
-        TestMail mail = getMailReceiver().receive(furtherEmail);
+        new EmailAddress(u, furtherEmail, Locale.ENGLISH);
+        getMailReceiver().receive(furtherEmail);
         try (GigiPreparedStatement stmt = new GigiPreparedStatement("UPDATE `emailPinglog` SET `status`='success'::`pingState`, `when` = (now() - interval '1 months' * ?::INTEGER) WHERE `email`=? ")) {
             stmt.setInt(1, TimeConditions.getInstance().getEmailPingMonths());
             stmt.setString(2, furtherEmail);