Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ashiagr committed Oct 28, 2024
1 parent a4ddef4 commit ec63f70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import au.com.shiftyjelly.pocketcasts.preferences.UserSetting
import au.com.shiftyjelly.pocketcasts.preferences.model.ArtworkConfiguration
import au.com.shiftyjelly.pocketcasts.preferences.model.ShelfItem
import au.com.shiftyjelly.pocketcasts.repositories.bookmark.BookmarkManager
import au.com.shiftyjelly.pocketcasts.repositories.download.DownloadManager
import au.com.shiftyjelly.pocketcasts.repositories.playback.PlaybackManager
import au.com.shiftyjelly.pocketcasts.repositories.playback.PlaybackState
import au.com.shiftyjelly.pocketcasts.repositories.playback.SleepTimer
Expand Down Expand Up @@ -70,6 +71,9 @@ class PlayerViewModelTest {
@Mock
private lateinit var bookmarkManager: BookmarkManager

@Mock
private lateinit var downloadManager: DownloadManager

@Mock
private lateinit var podcastManager: PodcastManager

Expand Down Expand Up @@ -192,6 +196,7 @@ class PlayerViewModelTest {
userEpisodeManager = userEpisodeManager,
podcastManager = podcastManager,
bookmarkManager = bookmarkManager,
downloadManager = downloadManager,
sleepTimer = sleepTimer,
settings = settings,
theme = theme,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,6 @@ enum class Feature(
hasFirebaseRemoteFlag = false,
hasDevToggle = true,
),
CUSTOM_PLAYBACK_SETTINGS(
key = "custom_playback_settings",
title = "Custom playback settings",
defaultValue = BuildConfig.DEBUG,
tier = FeatureTier.Free,
hasFirebaseRemoteFlag = false,
hasDevToggle = true,
),
;

companion object {
Expand Down

0 comments on commit ec63f70

Please sign in to comment.