music: fix failing test

Fix failing music test due to FakeMusicSettings not properly
inheriting the newly added sort article setting.
This commit is contained in:
Alexander Capehart 2023-02-20 18:36:19 -07:00
parent 45fe36bd09
commit b260bf45b2
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -33,6 +33,8 @@ open class FakeMusicSettings : MusicSettings {
override var multiValueSeparators: String
get() = throw NotImplementedError()
set(_) = throw NotImplementedError()
override val automaticSortNames: Boolean
get() = throw NotImplementedError()
override var songSort: Sort
get() = throw NotImplementedError()
set(_) = throw NotImplementedError()