Skip to content

Commit 90ea44f

Browse files
committed
clean up imports in test files: remove unused modules for improved readability and maintenance
1 parent a01b308 commit 90ea44f

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

tests/android/installer/test_cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from pathlib import Path
55
from unittest.mock import Mock, patch
66

7-
import pytest
87
from typer.testing import CliRunner
98

109
from ovmobilebench.android.installer.cli import app

tests/android/installer/test_ndk_coverage.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,11 @@
22

33
import tempfile
44
from pathlib import Path
5-
from unittest.mock import Mock, patch, mock_open
6-
import urllib.error
5+
from unittest.mock import Mock, patch
76

87
import pytest
98

109
from ovmobilebench.android.installer.ndk import NdkResolver
11-
from ovmobilebench.android.installer.errors import (
12-
ComponentNotFoundError,
13-
DownloadError,
14-
InvalidArgumentError,
15-
UnpackError,
16-
)
1710

1811

1912
class TestNdkResolverCoverage:

0 commit comments

Comments
 (0)