test: fix failure
Once again, forgot to update the mock implementations.
This commit is contained in:
parent
686290a6c1
commit
d8b67a8512
2 changed files with 4 additions and 1 deletions
|
@ -85,7 +85,7 @@ sealed class Tab(open val mode: MusicMode) {
|
||||||
// Like when deserializing, make sure there are no duplicate tabs for whatever reason.
|
// Like when deserializing, make sure there are no duplicate tabs for whatever reason.
|
||||||
val distinct = tabs.distinctBy { it.mode }
|
val distinct = tabs.distinctBy { it.mode }
|
||||||
|
|
||||||
var sequence = 0b0100
|
var sequence = 0
|
||||||
var shift = MAX_SEQUENCE_IDX * 4
|
var shift = MAX_SEQUENCE_IDX * 4
|
||||||
for (tab in distinct) {
|
for (tab in distinct) {
|
||||||
val bin =
|
val bin =
|
||||||
|
|
|
@ -48,6 +48,9 @@ open class FakeMusicSettings : MusicSettings {
|
||||||
override var genreSort: Sort
|
override var genreSort: Sort
|
||||||
get() = throw NotImplementedError()
|
get() = throw NotImplementedError()
|
||||||
set(_) = throw NotImplementedError()
|
set(_) = throw NotImplementedError()
|
||||||
|
override var playlistSort: Sort
|
||||||
|
get() = throw NotImplementedError()
|
||||||
|
set(value) = throw NotImplementedError()
|
||||||
override var albumSongSort: Sort
|
override var albumSongSort: Sort
|
||||||
get() = throw NotImplementedError()
|
get() = throw NotImplementedError()
|
||||||
set(_) = throw NotImplementedError()
|
set(_) = throw NotImplementedError()
|
||||||
|
|
Loading…
Reference in a new issue