diff --git a/core/tests/test_create_vacancies.py b/core/tests/test_create_vacancies.py index 8b12672480349cf4b8e3006ef051b159f23c52ea..c5c960f5e56e711a7a73653e030e22ebaf809a3b 100644 --- a/core/tests/test_create_vacancies.py +++ b/core/tests/test_create_vacancies.py @@ -54,7 +54,7 @@ class CreateAndUpdateVacancyTest(APITestCase): url = '/api/vacancies/' response = self.client.post(url, {'company': new_company.pk, 'open_time': self.today, 'close_time': self.tomorrow, 'name': 'new vacancy', - 'description': 'new_vacancy ', 'amount': 10, 'responsibilities': 'new_vacancy'}, format='json') + 'description': 'new_vacancy ', 'amount': 10, 'responsibilities': 'new_vacancy', 'requirements':'new_vacancy'}, format='json') self.assertEqual(response.status_code, status.HTTP_200_OK) vacancy = Vacancy.objects.first()