2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-15 18:12:54 +00:00

For #8975: Update unit tests for new separator between title and url

This commit is contained in:
mcarare 2020-03-05 16:54:40 +02:00 committed by Emily Kager
parent 16e2f20471
commit 7ae1304612

View File

@ -62,7 +62,7 @@ class ShareControllerTest {
TabData("title0", "url0"), TabData("title0", "url0"),
TabData("title1", "url1") TabData("title1", "url1")
) )
private val textToShare = "${shareData[0].title} ${shareData[0].url}\n\n${shareData[1].title} ${shareData[1].url}" private val textToShare = "${shareData[0].title}\n${shareData[0].url}\n\n${shareData[1].title}\n${shareData[1].url}"
private val testCoroutineScope = TestCoroutineScope() private val testCoroutineScope = TestCoroutineScope()
private val sendTabUseCases = mockk<SendTabUseCases>(relaxed = true) private val sendTabUseCases = mockk<SendTabUseCases>(relaxed = true)
private val snackbar = mockk<FenixSnackbar>(relaxed = true) private val snackbar = mockk<FenixSnackbar>(relaxed = true)