Gauthier

Results 813 comments of Gauthier

@05nelsonm are you able to clarify why the original issue of having directories / files owned by root is a problem? It's been like this for some time, and never...

I don't quite understand how root on your laptop could not have the permissions to write to your own user folder.

@05nelsonm what's your local setup ? I am myself running this locally on a mac, and i have no problem. My mac user is not root.

Would you be able to provide an example project or unit test that would highlight the problem maybe ?

Thanks, i have the same error on my machine, and managed to set your sample as a unit test. I'm not sure about the fix though. > Should these modifications...

> @gotson any news on that ? I am not working on this, PRs are welcome.

do you think you could add a test covering this ?

> @gotson Really sorry for missing your comment. I have added in the unit test for the removeQuotation method. the test code doesn't compile

i've refactored your test code: ```java @ParameterizedTest @MethodSource public void removeQuotation(String input, String expected) throws SQLException { assertThat(ExtendedCommand.removeQuotation(input)).isEqualTo(expected); } private static Stream removeQuotation() { return Stream.of( Arguments.of(null, null), // Null...