mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Rename ImportForm to BulkImportForm
This commit is contained in:
@@ -2,7 +2,7 @@ from django import forms
|
||||
from django.test import TestCase
|
||||
|
||||
from utilities.choices import ImportFormatChoices
|
||||
from utilities.forms.bulk_import import ImportForm
|
||||
from utilities.forms.bulk_import import BulkImportForm
|
||||
from utilities.forms.utils import expand_alphanumeric_pattern, expand_ipaddress_pattern
|
||||
|
||||
|
||||
@@ -288,7 +288,7 @@ class ExpandAlphanumeric(TestCase):
|
||||
class ImportFormTest(TestCase):
|
||||
|
||||
def test_format_detection(self):
|
||||
form = ImportForm()
|
||||
form = BulkImportForm()
|
||||
|
||||
data = (
|
||||
"a,b,c\n"
|
||||
|
Reference in New Issue
Block a user