Skip to content

Commit

Permalink
Merge pull request #14 from yazdipour/bugfix/minor-style-changes-to-m…
Browse files Browse the repository at this point in the history
…ake-it-more-pythonic

fix: Change test URLs
  • Loading branch information
yazdipour authored Apr 25, 2024
2 parents c4eb9dc + 048d1d3 commit 0fac032
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_omnivoreql.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_get_profile(self):

def test_save_url(self):
# When
result = self.client.save_url("https://www.google.com")
result = self.client.save_url("https://github.com/yazdipour/OmnivoreQL")
# Then
self.assertIsNotNone(result)
self.assertNotIn("errorCodes", result["saveUrl"])
Expand Down Expand Up @@ -90,7 +90,7 @@ def test_get_subscriptions(self):

def test_archive_article(self):
# Given
save_result = self.client.save_url("https://www.google.com")
save_result = self.client.save_url("https://pypi.org/project/omnivorex/")
self.assertIsNotNone(save_result)
# When
last_article = self.client.get_articles()['search']['edges'][0]
Expand All @@ -101,7 +101,7 @@ def test_archive_article(self):

def test_delete_article(self):
# Given
save_result = self.client.save_url("https://www.google.com")
save_result = self.client.save_url("https://pypi.org/project/omnivoreql/")
self.assertIsNotNone(save_result)
# When
last_article = self.client.get_articles()['search']['edges'][0]
Expand Down

0 comments on commit 0fac032

Please sign in to comment.