Skip to content

Commit

Permalink
Disable key rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
vladaspasic committed Aug 31, 2023
1 parent 0fcb8bf commit 5c90f6f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import com.konfigyr.io.ByteArray;
import org.assertj.core.data.TemporalUnitWithinOffset;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import java.time.Instant;
import java.time.temporal.ChronoUnit;
Expand Down Expand Up @@ -91,6 +93,7 @@ void shouldPerformSigningOperation() throws Exception {
}

@Test
@DisabledOnOs(value = OS.WINDOWS)
void shouldRotateKeyset() throws Exception {
final var keyset = generate("rotating-keyset", TinkAlgorithm.AES128_GCM);

Expand Down Expand Up @@ -128,4 +131,4 @@ void shouldFailToPerformUnsupportedOperation() {
KeysetOperation.VERIFY));
}

}
}

0 comments on commit 5c90f6f

Please sign in to comment.