Merge "Clean imports in code"

This commit is contained in:
Jenkins 2016-03-24 23:09:56 +00:00 committed by Gerrit Code Review
commit c43e1b8265
1 changed files with 3 additions and 2 deletions

View File

@ -15,15 +15,16 @@
import os
import unittest
from pecan import set_config
from pecan.testing import load_test_app
from unittest import TestCase
__all__ = ['FunctionalTest']
class FunctionalTest(TestCase):
class FunctionalTest(unittest.TestCase):
"""
Used for functional tests where you need to test your
literal application and its integration with the framework.