Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Merge requests
!68
F junit5
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
F junit5
f-junit5
into
dev
Overview
0
Commits
2
Pipelines
2
Changes
38
Merged
Timm Fitschen
requested to merge
f-junit5
into
dev
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
38
Expand
Summary
Updates JUnit 4 to JUnit 5
Edited
2 years ago
by
Timm Fitschen
0
0
Merge request reports
Compare
dev
version 1
3da96068
2 years ago
dev (base)
and
latest version
latest version
3d3de670
2 commits,
2 years ago
version 1
3da96068
1 commit,
2 years ago
38 files
+
649
−
703
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
38
Search (e.g. *.vue) (Ctrl+P)
src/main/java/org/caosdb/server/scripting/ServerSideScriptingCaller.java
+
1
−
1
Options
@@ -170,7 +170,7 @@ public class ServerSideScriptingCaller {
@@ -170,7 +170,7 @@ public class ServerSideScriptingCaller {
// create files dir
// create files dir
if
(!
getUploadFilesDir
().
mkdir
())
{
if
(!
getUploadFilesDir
().
mkdir
())
{
throw
new
FileNotFoundException
(
"Could not crete the FILE_UPLOAD_DIR."
);
throw
new
FileNotFoundException
(
"Could not cre
a
te the FILE_UPLOAD_DIR."
);
}
}
for
(
final
FileProperties
f
:
files
)
{
for
(
final
FileProperties
f
:
files
)
{
if
(
f
.
getPath
()
==
null
||
f
.
getPath
().
isEmpty
())
{
if
(
f
.
getPath
()
==
null
||
f
.
getPath
().
isEmpty
())
{
Loading