test: fix failure

Once again, forgot to update the mock implementations.
This commit is contained in:
Alexander Capehart 2023-03-20 20:29:43 -06:00
parent 686290a6c1
commit d8b67a8512
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 4 additions and 1 deletions

View file

@ -85,7 +85,7 @@ sealed class Tab(open val mode: MusicMode) {
// Like when deserializing, make sure there are no duplicate tabs for whatever reason.
val distinct = tabs.distinctBy { it.mode }
var sequence = 0b0100
var sequence = 0
var shift = MAX_SEQUENCE_IDX * 4
for (tab in distinct) {
val bin =

View file

@ -48,6 +48,9 @@ open class FakeMusicSettings : MusicSettings {
override var genreSort: Sort
get() = throw NotImplementedError()
set(_) = throw NotImplementedError()
override var playlistSort: Sort
get() = throw NotImplementedError()
set(value) = throw NotImplementedError()
override var albumSongSort: Sort
get() = throw NotImplementedError()
set(_) = throw NotImplementedError()