-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Filter devices without supported versions #1967
Conversation
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
Timestamp: 2021-05-25 11:38:59 |
21cc6ff
to
5c60bf9
Compare
fun getModels(projectId: String): List<AndroidModel> = deviceCatalog(projectId).models.orEmpty() | ||
|
||
fun supportedVersionsAsTable(projectId: String) = fetchAndroidOsVersion(projectId).toCliTable() | ||
|
||
fun describeSoftwareVersion(projectId: String, versionId: String) = fetchAndroidOsVersion(projectId).getDescription(versionId) | ||
fun describeSoftwareVersion(projectId: String, versionId: String) = | ||
fetchAndroidOsVersion(projectId).getDescription(versionId) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer:
fun describeSoftwareVersion(
projectId: String,
versionId: String
) = fetchAndroidOsVersion(projectId).getDescription(versionId)
but this is just a suggestion, please check other places
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah sorry, it was merged before I implemented changes. Will do it within another PR
Fixes #1892
Test Plan
./gradlew flankFullRun
flank firebase test ios models list
and compare withgcloud firebase test ios models list
-- there should be no differentflank firebase test android models list
and compare withgcloud firebase test android models list
-- there should be no differentChecklist