Skip to content

Commit

Permalink
revert: break some tests for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 committed Dec 19, 2024
1 parent f733a32 commit 8aefbd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/mixins/test_podcasts.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ class TestPodcasts:
def test_get_channel(self, config, yt):
podcast_id = config["podcasts"]["channel_id"]
channel = yt.get_channel(podcast_id)
assert len(channel["episodes"]["results"]) == 10
assert len(channel["episodes"]["results"]) != 10
assert len(channel["podcasts"]["results"]) >= 5

def test_get_channel_episodes(self, config, yt_oauth):
channel_id = config["podcasts"]["channel_id"]
channel_id = config["podcasts"]["channl_id"]
channel = yt_oauth.get_channel(channel_id)
channel_episodes = yt_oauth.get_channel_episodes(channel_id, channel["episodes"]["params"])
assert len(channel_episodes) >= 150
Expand All @@ -15,7 +15,7 @@ def test_get_channel_episodes(self, config, yt_oauth):
def test_get_podcast(self, config, yt, yt_brand):
podcast_id = config["podcasts"]["podcast_id"]
podcast = yt.get_podcast(podcast_id)
assert len(podcast["episodes"]) == 100
assert len(podcast["episodes"]) = 100
assert not podcast["saved"]
assert podcast["thumbnails"]

Expand Down

0 comments on commit 8aefbd4

Please sign in to comment.