Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Update Android Components version to 92.0.20210806164329 (#20722)
Browse files Browse the repository at this point in the history
Addresses breaking change in ShortcutsSuggestionProvider
  • Loading branch information
csadilek authored Aug 6, 2021
1 parent f9d6380 commit 01555c2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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> {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/AndroidComponents.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 01555c2

Please sign in to comment.