-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URLOutputStream Should Check for Directory Existance #789
Comments
Can |
klausbayrhammer
added a commit
to klausbayrhammer/cucumber-jvm
that referenced
this issue
Dec 17, 2014
* tests whether files are created when the parent directory does not exists * removes duplicate test case
I couldn't create a test with the behaviour you did describe. Could you provide a small code-sample? |
brasmusson
added a commit
that referenced
this issue
Mar 18, 2015
Hey @joshar1 I'm cleaning up old tickets. Do you still experience this problem? |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The maven surefire plugin offers the ability to run tests in parallel with the parallel parameter.
While attempting to execute my Cucumber tests in parallel, I noticed that the URLOutputStream class was throwing exceptions because the ensureParentDirExists method was not checking that the directory already existed prior to attempting to create the directory.
I propose the following one line change.
From:
To:
If this change is acceptable to others, I'll fork and issue a pull request.
The text was updated successfully, but these errors were encountered: