test: drop usage of custom log module in new test

Old tests are not touched as they will be removed in subsequent
commits, along with the custom log module.

Signed-off-by: Lukas Puehringer <lukas.puehringer@nyu.edu>
This commit is contained in:
Lukas Puehringer 2022-01-25 17:48:18 +01:00
parent 16192902ce
commit 2bb977cd9c

View file

@ -35,8 +35,6 @@
from contextlib import contextmanager
from typing import IO, Any, Callable, Dict, Iterator, List, Optional
import tuf.log
logger = logging.getLogger(__name__)
# May may be used to reliably read other files in tests dir regardless of cwd
@ -154,7 +152,6 @@ def configure_test_logging(argv: List[str]) -> None:
loglevel = logging.DEBUG
logging.basicConfig(level=loglevel)
tuf.log.set_log_level(loglevel)
def cleanup_dir(path: str) -> None: