File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/test/java/com/github/kklisura/cdt/launch Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ deploy:
2929 GPG_TTY=$$(tty ) $(MVN ) clean compile deploy -P release
3030
3131snapshot :
32- mvn versions:set -DnewVersion=${version} -SNAPSHOT
32+ $(MVN ) versions:set -DnewVersion=${version} -SNAPSHOT
33+ $(MVN ) versions:commit
3334
3435release :
35- mvn versions:set -DnewVersion=${version}
36+ $(MVN ) versions:set -DnewVersion=${version}
37+ $(MVN ) versions:commit
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ public void testGetChromeBinaryPathThrowsExceptionWhenNoBinaryFoundOnChromePath(
100100 public void testGetChromeBinaryPathThrowsExceptionWhenNoBinaryFound () {
101101 expect (environment .getEnv ("CHROME_PATH" )).andReturn (null );
102102
103+ expect (processLauncher .isExecutable ("/snap/bin/chromium" )).andReturn (false );
103104 expect (processLauncher .isExecutable ("/usr/bin/chromium" )).andReturn (false );
104105 expect (processLauncher .isExecutable ("/usr/bin/chromium-browser" )).andReturn (false );
105106 expect (processLauncher .isExecutable ("/usr/bin/google-chrome-stable" )).andReturn (false );
You can’t perform that action at this time.
0 commit comments