We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e721a27 commit d428864Copy full SHA for d428864
1 file changed
tests/cli/test_setup_android_config.py
@@ -54,7 +54,9 @@ def test_setup_android_reads_config(self, tmp_path):
54
)
55
56
assert result.exit_code == 0
57
- assert "test_cache/android-sdk" in result.stdout
+ # Remove newlines from output for path checking (Rich formatting can split paths)
58
+ stdout_oneline = result.stdout.replace("\n", " ")
59
+ assert "test_cache/android-sdk" in stdout_oneline
60
assert "All required Android components are already installed" in result.stdout
61
62
# Should not call ensure_android_tools since everything is installed
0 commit comments