tests: fix mocks

Fix unimplemented mock methods.
This commit is contained in:
Alexander Capehart 2023-05-18 17:14:58 -06:00
parent 3feee67388
commit c0001e0a81
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -70,6 +70,10 @@ open class FakeMusicRepository : MusicRepository {
throw NotImplementedError() throw NotImplementedError()
} }
override fun renamePlaylist(playlist: Playlist, name: String) {
throw NotImplementedError()
}
override fun requestIndex(withCache: Boolean) { override fun requestIndex(withCache: Boolean) {
throw NotImplementedError() throw NotImplementedError()
} }