Description: Add Django 1.9 support
 In Django 1.9, django.utils.unittest is depcreated in favor of
 regular unittest.
Origin: backport, https://github.com/mgrouchy/django-stronghold/commit/6eb96664ddd8813cad85d159967e407243d9cc78
Bug: https://github.com/mgrouchy/django-stronghold/pull/47
Bug-Debian: https://bugs.debian.org/808484
Forwarded: https://github.com/mgrouchy/django-stronghold/pull/47
Author: Sunil Mohan Adapa <sunil@medhas.org>
Last-Update: 2016-01-19
Applied-Upstream: 0.2.8, https://github.com/mgrouchy/django-stronghold/commit/6eb96664ddd8813cad85d159967e407243d9cc78
--- a/stronghold/tests/testdecorators.py
+++ b/stronghold/tests/testdecorators.py
@@ -1,9 +1,8 @@
 import functools
+import unittest
 
 from stronghold import decorators
 
-from django.utils import unittest
-
 
 class StrongholdDecoratorTests(unittest.TestCase):
 
--- a/stronghold/tests/testutils.py
+++ b/stronghold/tests/testutils.py
@@ -1,6 +1,6 @@
-from stronghold import utils
+import unittest
 
-from django.utils import unittest
+from stronghold import utils
 
 
 class IsViewFuncPublicTests(unittest.TestCase):
