Removed exemplar import and re-orders sets file import to be near top.
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
import unittest
|
||||
import pytest
|
||||
|
||||
from sets import (clean_ingredients,
|
||||
check_drinks,
|
||||
categorize_dish,
|
||||
tag_special_ingredients,
|
||||
compile_ingredients,
|
||||
separate_appetizers,
|
||||
singleton_ingredients)
|
||||
|
||||
|
||||
from sets_categories_data import (VEGAN,
|
||||
VEGETARIAN,
|
||||
KETO,
|
||||
PALEO,
|
||||
KETO, PALEO,
|
||||
OMNIVORE,
|
||||
ALCOHOLS,
|
||||
SPECIAL_INGREDIENTS,
|
||||
@@ -27,15 +36,6 @@ from sets_test_data import (recipes_with_duplicates,
|
||||
singletons)
|
||||
|
||||
|
||||
from exemplar import (clean_ingredients,
|
||||
check_drinks,
|
||||
categorize_dish,
|
||||
tag_special_ingredients,
|
||||
compile_ingredients,
|
||||
separate_appetizers,
|
||||
singleton_ingredients,)
|
||||
|
||||
|
||||
class SetsTest(unittest.TestCase):
|
||||
|
||||
@pytest.mark.task(taskno=1)
|
||||
|
||||
Reference in New Issue
Block a user