1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-14 23:17:39 +00:00

Mock openAndTruncateStream instead of getStream in test

This commit is contained in:
Stypox
2024-11-27 16:37:25 +01:00
parent b21981a9c7
commit e31a8ad7a2

View File

@@ -55,7 +55,7 @@ class ImportExportManagerTest {
`when`(sharedPreferences.all).thenReturn(expectedPreferences)
val output = File.createTempFile("newpipe_", "")
`when`(storedFileHelper.stream).thenReturn(FileStream(output))
`when`(storedFileHelper.openAndTruncateStream()).thenReturn(FileStream(output))
ImportExportManager(fileLocator).exportDatabase(sharedPreferences, storedFileHelper)
val zipFile = ZipFile(output)