Skip to content
Snippets Groups Projects
Commit d9038197 authored by Ivan's avatar Ivan
Browse files

Fix tests

parent 7072d011
Branches 8.x-1.x
Tags 8.x-1.0
No related merge requests found
...@@ -84,7 +84,8 @@ function library_manager_build_libraries() { ...@@ -84,7 +84,8 @@ function library_manager_build_libraries() {
$library_path = $libraries_path . '/' . $definition->id(); $library_path = $libraries_path . '/' . $definition->id();
if (file_exists($library_path)) { if (file_exists($library_path)) {
file_unmanaged_delete_recursive($library_path); // The files can be removed in other thread when tests are running.
@file_unmanaged_delete_recursive($library_path);
} }
$library_info = []; $library_info = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment