Skip to content

Commit

Permalink
replace mock module with unittest.mock
Browse files Browse the repository at this point in the history
  • Loading branch information
lexming committed May 10, 2024
1 parent b7db884 commit 98a49da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/framework/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"""
import contextlib
import glob
import mock
import os
import re
import signal
Expand All @@ -45,7 +44,7 @@
import time
from concurrent.futures import ThreadPoolExecutor
from test.framework.utilities import EnhancedTestCase, TestLoaderFiltered, init_config
from unittest import TextTestRunner
from unittest import TextTestRunner, mock
from easybuild.base.fancylogger import setLogLevelDebug

import easybuild.tools.asyncprocess as asyncprocess
Expand Down

0 comments on commit 98a49da

Please sign in to comment.