trivial: correct spelling in test names

I apparently have a really hard time spelling existent properly. This
commit corrects a couple of tests that I had misspelled in:

  Iceed65d34a8a7cff8841000d7703b1a48e95bb24

Change-Id: I1cdde4d1ad8f5281652e4bd5d49235d0b3d438b7
This commit is contained in:
Lance Bragstad 2019-03-20 20:22:46 +00:00
parent 6e4d06861e
commit 32c96feecd
1 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ class SystemAdminTests(base_classes.TestCaseWithBootstrap,
headers=self.headers
)
def test_user_can_update_non_existant_project_not_found(self):
def test_user_can_update_non_existent_project_not_found(self):
update = {'project': {'description': uuid.uuid4().hex}}
with self.test_client() as c:
@ -281,7 +281,7 @@ class SystemAdminTests(base_classes.TestCaseWithBootstrap,
with self.test_client() as c:
c.delete('/v3/projects/%s' % project['id'], headers=self.headers)
def test_user_can_delete_non_existant_project_not_found(self):
def test_user_can_delete_non_existent_project_not_found(self):
with self.test_client() as c:
c.delete(
'/v3/projects/%s' % uuid.uuid4().hex, headers=self.headers,