Skip to content

Commit

Permalink
fix: removed Exception never thrown by HelmLintMojoTest.setUp (3324)
Browse files Browse the repository at this point in the history
HelmLintMojoTest.setUp The declared Exception exception is never thrown eclipse-jkube#3053

Signed-off-by: Mohammed Sadique <[email protected]>
---
Fixed eclipse-jkube#3053

Signed-off-by: Mohammed Sadique <[email protected]>
---
Merge branch 'master' of https://github.com/Sadique982/jkube
  • Loading branch information
Sadique982 authored Aug 26, 2024
1 parent 19bbb24 commit bc140f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class HelmLintMojoTest {


@BeforeEach
void setUp() throws Exception {
void setUp() {
originalPrintStream = System.out;
outputStream = new ByteArrayOutputStream();
System.setOut(new PrintStream(outputStream));
Expand Down

0 comments on commit bc140f1

Please sign in to comment.