mirror of
				https://github.com/django/django.git
				synced 2025-10-30 19:47:35 +00:00 
			
		
		
		
	Added missing relative imports in test files.
This commit is contained in:
		
							parent
							
								
									de79d23ce0
								
							
						
					
					
						commit
						33ffd28d76
					
				
					 3 changed files with 9 additions and 3 deletions
				
			
		|  | @ -1,9 +1,11 @@ | ||||||
|  | from __future__ import absolute_import | ||||||
|  | 
 | ||||||
| from django.contrib.admindocs import views | from django.contrib.admindocs import views | ||||||
| from django.db.models import fields as builtin_fields | from django.db.models import fields as builtin_fields | ||||||
| from django.utils import unittest | from django.utils import unittest | ||||||
| from django.utils.translation import ugettext as _ | from django.utils.translation import ugettext as _ | ||||||
| 
 | 
 | ||||||
| import fields | from . import fields | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| class TestFieldType(unittest.TestCase): | class TestFieldType(unittest.TestCase): | ||||||
|  |  | ||||||
|  | @ -1,3 +1,5 @@ | ||||||
|  | from __future__ import absolute_import | ||||||
|  | 
 | ||||||
| import copy | import copy | ||||||
| 
 | 
 | ||||||
| from django.conf import settings | from django.conf import settings | ||||||
|  | @ -7,7 +9,7 @@ from django.db.models.loading import cache | ||||||
| from django.core.management.color import no_style  | from django.core.management.color import no_style  | ||||||
| from django.test import TestCase, skipIfDBFeature, skipUnlessDBFeature | from django.test import TestCase, skipIfDBFeature, skipUnlessDBFeature | ||||||
| 
 | 
 | ||||||
| from models import Article, ArticleRef, Authors, Reviewers, Scientist, ScientistRef | from .models import Article, ArticleRef, Authors, Reviewers, Scientist, ScientistRef | ||||||
| 
 | 
 | ||||||
| # We can't test the DEFAULT_TABLESPACE and DEFAULT_INDEX_TABLESPACE settings | # We can't test the DEFAULT_TABLESPACE and DEFAULT_INDEX_TABLESPACE settings | ||||||
| # because they're evaluated when the model class is defined. As a consequence, | # because they're evaluated when the model class is defined. As a consequence, | ||||||
|  |  | ||||||
|  | @ -1,7 +1,9 @@ | ||||||
|  | from __future__ import absolute_import | ||||||
|  | 
 | ||||||
| from django.contrib import admin | from django.contrib import admin | ||||||
| from django import forms | from django import forms | ||||||
| 
 | 
 | ||||||
| from models import * | from .models import * | ||||||
| 
 | 
 | ||||||
| site = admin.AdminSite(name="admin") | site = admin.AdminSite(name="admin") | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Claude Paroz
						Claude Paroz