We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37967b6 commit 97b0938Copy full SHA for 97b0938
1 file changed
tests/test_updater_ng.py
@@ -7,34 +7,16 @@
7
"""
8
9
import os
10
-import time
11
import shutil
12
-import copy
13
import tempfile
14
import logging
15
-import errno
16
import sys
17
import unittest
18
-import json
19
-import tracemalloc
20
-
21
-if sys.version_info >= (3, 3):
22
- import unittest.mock as mock
23
-else:
24
- import mock
25
26
-import tuf
27
-import tuf.exceptions
28
-import tuf.log
29
-import tuf.repository_tool as repo_tool
30
import tuf.unittest_toolbox as unittest_toolbox
31
32
from tests import utils
33
-from tuf.api import metadata
34
from tuf import ngclient
35
36
-import securesystemslib
37
38
logger = logging.getLogger(__name__)
39
40
0 commit comments