diff --git a/twitch/feeds.py b/twitch/feeds.py index 0b4f731..6ca0cdb 100644 --- a/twitch/feeds.py +++ b/twitch/feeds.py @@ -447,7 +447,7 @@ class GameFeed(Feed): description_parts.append( SafeText( - f"

New game has been added to ttvdrops.lovinator.space: {game_name} by {game_owner}\n\n" + f"

{game_name} has been added to ttvdrops.lovinator.space!\nOwned by {game_owner}.\n\n" f"[Details] " f"[Twitch] " f"[RSS feed]\n

", diff --git a/twitch/tests/test_feeds.py b/twitch/tests/test_feeds.py index ed4d7f0..fe12daa 100644 --- a/twitch/tests/test_feeds.py +++ b/twitch/tests/test_feeds.py @@ -65,7 +65,7 @@ class RSSFeedTestCase(TestCase): assert response.status_code == 200 assert response["Content-Type"] == "application/rss+xml; charset=utf-8" content: str = response.content.decode("utf-8") - assert "Test Game by Test Organization" in content + assert "Owned by Test Organization." in content expected_rss_link: str = reverse( "twitch:game_campaign_feed",