Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ranahaani authored Oct 28, 2023
1 parent 901aeb6 commit cd46c72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_gnews.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ def test_get_news_by_location(self):
self.assertTrue(isinstance(news_articles, list))
self.assertTrue(len(news_articles) > 0)

def test_get_news_by_site_valid(self):
# Test that get_news_by_site returns news articles for a valid site domain
def test_get_news_by_site_valid(self):
site = "cnn.com"
news_articles = self.gnews.get_news_by_site(site)
self.assertTrue(isinstance(news_articles, list))
Expand Down

0 comments on commit cd46c72

Please sign in to comment.