1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix RegionTestCase

This commit is contained in:
Jeremy Stretch
2020-11-10 13:13:01 -05:00
parent 52312195b6
commit de0e69840e

View File

@ -51,10 +51,10 @@ class RegionTestCase(ViewTestCases.OrganizationalObjectViewTestCase):
}
cls.csv_data = (
"name,slug,status,description",
"Region 4,region-4,reserved,Fourth region",
"Region 5,region-5,available,Fifth region",
"Region 6,region-6,planned,Sixth region",
"name,slug,description",
"Region 4,region-4,Fourth region",
"Region 5,region-5,Fifth region",
"Region 6,region-6,Sixth region",
)