diff options
Diffstat (limited to 'tests/test_subcmds_sync.py')
-rw-r--r-- | tests/test_subcmds_sync.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_subcmds_sync.py b/tests/test_subcmds_sync.py index 71b0f8e0..b9f0a746 100644 --- a/tests/test_subcmds_sync.py +++ b/tests/test_subcmds_sync.py | |||
@@ -16,16 +16,17 @@ | |||
16 | import os | 16 | import os |
17 | import shutil | 17 | import shutil |
18 | import tempfile | 18 | import tempfile |
19 | import unittest | ||
20 | import time | 19 | import time |
20 | import unittest | ||
21 | from unittest import mock | 21 | from unittest import mock |
22 | 22 | ||
23 | import pytest | 23 | import pytest |
24 | 24 | ||
25 | import command | 25 | import command |
26 | from subcmds import sync | 26 | from error import GitError |
27 | from error import RepoExitError | ||
27 | from project import SyncNetworkHalfResult | 28 | from project import SyncNetworkHalfResult |
28 | from error import GitError, RepoExitError | 29 | from subcmds import sync |
29 | 30 | ||
30 | 31 | ||
31 | @pytest.mark.parametrize( | 32 | @pytest.mark.parametrize( |