Remove last occurrrence of undetermined test

pull/2/head
Raphaël Vinot 2016-10-14 18:41:35 +02:00
parent 249e626cef
commit f65248e044
1 changed files with 2 additions and 1 deletions

View File

@ -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