diff --git a/acme4j-it/src/test/java/org/shredzone/acme4j/it/pebble/SessionIT.java b/acme4j-it/src/test/java/org/shredzone/acme4j/it/pebble/SessionIT.java index c5f1096b..705d41c2 100644 --- a/acme4j-it/src/test/java/org/shredzone/acme4j/it/pebble/SessionIT.java +++ b/acme4j-it/src/test/java/org/shredzone/acme4j/it/pebble/SessionIT.java @@ -30,21 +30,6 @@ import org.shredzone.acme4j.exception.AcmeException; */ public class SessionIT extends PebbleITBase { - @Test - public void testNonce() throws AcmeException { - Session session = new Session(pebbleURI()); - - // No nonce yet on a fresh session - assertThat(session.getNonce(), is(nullValue())); - - // Request directory, also providing a nonce - session.getMetadata(); - - // A nonce must be set now - assertThat(session.getNonce(), not(nullValue())); - assertThat(session.provider(), not(nullValue())); - } - @Test public void testResources() throws AcmeException { Session session = new Session(pebbleURI());