Skip to content

Commit c4360b8

Browse files
committed
Removes monkey_patch_asyncio_subporcess
1 parent 3f9323f commit c4360b8

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

services/web/server/tests/unit/isolated/test_exporter_archiving.py

+8-11
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@
22
# pylint:disable=redefined-outer-name
33
# pylint:disable=no-name-in-module
44

5+
import asyncio
6+
import hashlib
57
import os
8+
import random
9+
import secrets
10+
import string
611
import sys
712
import uuid
8-
import hashlib
9-
import random
10-
from pathlib import Path
11-
import asyncio
12-
from typing import Set, List, Dict, Iterator
1313
from concurrent.futures import ProcessPoolExecutor
14-
import string
15-
import secrets
16-
14+
from pathlib import Path
15+
from typing import Dict, Iterator, List, Set
1716

1817
import pytest
1918
from simcore_service_webserver.exporter.archiving import (
@@ -232,9 +231,7 @@ async def test_archive_already_exists(loop, temp_dir, project_uuid):
232231
)
233232

234233

235-
async def test_unzip_found_too_many_project_targets(
236-
loop, temp_dir, project_uuid, monkey_patch_asyncio_subporcess
237-
):
234+
async def test_unzip_found_too_many_project_targets(loop, temp_dir, project_uuid):
238235
tmp_dir_to_compress = temp_dir_to_compress_with_too_many_targets(
239236
temp_dir, project_uuid
240237
)

0 commit comments

Comments
 (0)