From f65248e044f8600d15ab89dd4d54ce215abb43d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Fri, 14 Oct 2016 18:41:35 +0200 Subject: [PATCH] Remove last occurrrence of undetermined test --- tests/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests.py b/tests/tests.py index 52c5632..1d6c481 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -58,7 +58,8 @@ class TestPyTaxonomies(unittest.TestCase): print(entry) def test_amountEntries(self): - list(self.taxonomies.values())[0].amount_entries() + for tax in self.taxonomies.values(): + tax.amount_entries() def test_missingDependency(self): pytaxonomies.api.HAS_REQUESTS = False