From f632b5bffce2ea2d2eb897a460020199a8bba43a Mon Sep 17 00:00:00 2001 From: Hristo Harsev Date: Mon, 11 Oct 2021 01:28:47 +0300 Subject: [PATCH] Bump version to 13.5.0 and remove print statements from tests --- recipe_scrapers/__version__.py | 2 +- tests/test_gousto.py | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/recipe_scrapers/__version__.py b/recipe_scrapers/__version__.py index f7f8352ab..8e2b31937 100644 --- a/recipe_scrapers/__version__.py +++ b/recipe_scrapers/__version__.py @@ -1 +1 @@ -__version__ = "13.4.0" +__version__ = "13.5.0" diff --git a/tests/test_gousto.py b/tests/test_gousto.py index ba17b7025..6eca79c49 100644 --- a/tests/test_gousto.py +++ b/tests/test_gousto.py @@ -10,7 +10,6 @@ def test_host(self): self.assertEqual("gousto.co.uk", self.harvester_class.host()) def test_canonical_url(self): - print(self.harvester_class.canonical_url()) self.assertEqual( "https://test.example.com/", self.harvester_class.canonical_url() ) @@ -25,7 +24,6 @@ def test_yields(self): self.assertEqual("2 serving(s)", self.harvester_class.yields()) def test_ingredients(self): - print("ingredients list", self.harvester_class.ingredients()) self.assertCountEqual( [ "1 onion", @@ -36,10 +34,7 @@ def test_ingredients(self): "2 British pork loin steaks", "1 pot of double cream (227ml)", "1/2 beef stock cube", - "200g linguine" - # "Olive oil", - # "pepper", - # "salt", + "200g linguine", ], self.harvester_class.ingredients(), )