We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d9c92a commit 5acbd63Copy full SHA for 5acbd63
src/test/java/com/mastercard/developer/encryption/JweConfigBuilderTest.java
@@ -116,7 +116,7 @@ public void testBuild_ShouldFallbackToDefaults() throws Exception {
116
@Test
117
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingDecryptionKey() throws Exception {
118
expectedException.expect(IllegalArgumentException.class);
119
- expectedException.expectMessage("You must include at least an encryption certificate or a decryption key");
+ expectedException.expectMessage("You must include at least an encryption key/certificate or a decryption key");
120
JweConfigBuilder.aJweEncryptionConfig()
121
.build();
122
}
0 commit comments