We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e0999 commit 0997a83Copy full SHA for 0997a83
backend/src/tests/mock_builders/playback_info_builder.py
@@ -11,6 +11,7 @@ def playback_info_builder(
11
track_duration=180000,
12
album_progress=1000000,
13
album_duration=18000000,
14
+ is_playing=True,
15
):
16
return PlaybackInfo.model_validate(
17
{
@@ -26,5 +27,6 @@ def playback_info_builder(
26
27
"track_duration": track_duration,
28
"album_progress": album_progress,
29
"album_duration": album_duration,
30
+ "is_playing": is_playing,
31
}
32
)
0 commit comments