From 4f40714169c2c676fd76be596c3dd543bad06c84 Mon Sep 17 00:00:00 2001 From: "S. Andrew Sheppard" Date: Tue, 5 Jan 2016 10:20:22 -0600 Subject: [PATCH] fix import order --- tests/test_authentication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_authentication.py b/tests/test_authentication.py index 2d888840b..285a3210c 100644 --- a/tests/test_authentication.py +++ b/tests/test_authentication.py @@ -6,10 +6,10 @@ import base64 from django.conf.urls import include, url from django.contrib.auth.models import User +from django.db import models from django.http import HttpResponse from django.test import TestCase from django.utils import six -from django.db import models from rest_framework import ( HTTP_HEADER_ENCODING, exceptions, permissions, renderers, status