Update Android Components version to 92.0.20210806164329 (#20722)

Addresses breaking change in ShortcutsSuggestionProvider
upstream-sync
Christian Sadilek 3 years ago committed by GitHub
parent f9d6380ab3
commit 01555c2bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,9 +25,6 @@ class ShortcutsSuggestionProvider(
) : AwesomeBar.SuggestionProvider {
override val id: String = UUID.randomUUID().toString()
override val shouldClearSuggestions: Boolean
get() = false
private val settingsIcon by lazy {
AppCompatResources.getDrawable(context, R.drawable.ic_settings)?.toBitmap()
}

@ -19,7 +19,6 @@ import mozilla.components.browser.state.state.SearchState
import mozilla.components.browser.state.store.BrowserStore
import org.junit.After
import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
import org.junit.Before
import org.junit.Test
import org.mozilla.fenix.R
@ -44,12 +43,6 @@ class ShortcutsSuggestionProviderTest {
unmockkStatic(AppCompatResources::class)
}
@Test
fun `should clear is always false`() {
val provider = ShortcutsSuggestionProvider(mockk(), mockk(), mockk(), mockk())
assertFalse(provider.shouldClearSuggestions)
}
@Test
fun `returns suggestions from search engine provider`() = runBlockingTest {
val engineOne = mockk<SearchEngine> {

@ -3,5 +3,5 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
object AndroidComponents {
const val VERSION = "92.0.20210805225445"
const val VERSION = "92.0.20210806164329"
}

Loading…
Cancel
Save