Skip to content

Commit

Permalink
fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-tzhang committed Sep 10, 2024
1 parent 504d781 commit 2831b28
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@

@RunWith(PowerMockRunner.class)
@PrepareForTest({JWTManager.class})
@PowerMockIgnore({"javax.net.ssl.*"}) /* Avoid ssl related exception from power mockito*/
@PowerMockIgnore({
"javax.net.ssl.*",
"javax.security.*"
}) /* Avoid ssl related exception from power mockito*/
public class StreamingIngestUtilsIT {
@Test
public void testJWTRetries() throws Exception {
Expand Down

0 comments on commit 2831b28

Please sign in to comment.