Skip to content
Snippets Groups Projects
Commit 3b9fd769 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'f-linked-file-with-space' into 'dev'

parents 7073a58c c3f67191
No related branches found
No related tags found
1 merge request!37Add tests for https://gitlab.com/caosdb/caosdb-server/-/issues/148
Pipeline #25229 passed
......@@ -583,7 +583,8 @@ def test_insert_files_in_dir():
try:
os.makedirs(path)
os.makedirs(path + "subfolder/")
test_file1 = open(path + "subfolder/test.dat", "w")
# file with space https://gitlab.com/caosdb/caosdb-server/-/issues/148
test_file1 = open(path + "subfolder/test withspace.dat", "w")
test_file1.write("hello world\n")
test_file1.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment