From 7c07612e9045f8e1b881f321ea68a4bacb2d70df Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 26 Dec 2014 19:21:51 -0500 Subject: [PATCH] Removed an unnecessary models file in the admin_scripts tests. --- tests/admin_scripts/models.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tests/admin_scripts/models.py diff --git a/tests/admin_scripts/models.py b/tests/admin_scripts/models.py deleted file mode 100644 index cd960520980..00000000000 --- a/tests/admin_scripts/models.py +++ /dev/null @@ -1,14 +0,0 @@ -from django.db import models -from django.utils.encoding import python_2_unicode_compatible - - -@python_2_unicode_compatible -class Article(models.Model): - headline = models.CharField(max_length=100, default='Default headline') - pub_date = models.DateTimeField() - - def __str__(self): - return self.headline - - class Meta: - ordering = ('-pub_date', 'headline')