Skip to content

Commit

Permalink
Fix a failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
0nko committed Nov 15, 2024
1 parent ae1ad01 commit f306e5d
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,10 @@ class ShowOnAppLaunchOptionHandlerImplTest {
TODO("Not yet implemented")
}

override suspend fun updateTabLastAccess(tabId: String) {
TODO("Not yet implemented")
}

override fun retrieveSiteData(tabId: String): MutableLiveData<Site> {
TODO("Not yet implemented")
}
Expand Down Expand Up @@ -851,5 +855,16 @@ class ShowOnAppLaunchOptionHandlerImplTest {
override suspend fun setTabLayoutType(layoutType: LayoutType) {
TODO("Not yet implemented")
}

override fun getOpenTabCount(): Int {
TODO("Not yet implemented")
}

override fun countTabsAccessedWithinRange(
accessOlderThan: Long,
accessNotMoreThan: Long?
): Int {
TODO("Not yet implemented")
}
}
}

0 comments on commit f306e5d

Please sign in to comment.