This commit is contained in:
alex 2019-11-14 16:26:47 +03:00
parent 322318a4f9
commit 68aa9e3914
2 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@ class ReviewBaseSerializer(serializers.ModelSerializer):
'id', 'id',
'reviewer', 'reviewer',
'text', 'text',
'language',
'status', 'status',
'child', 'child',
'published_at', 'published_at',

View File

@ -40,7 +40,6 @@ class BaseTestCase(APITestCase):
self.test_review = Review.objects.create( self.test_review = Review.objects.create(
reviewer=self.user, reviewer=self.user,
status=Review.READY, status=Review.READY,
language=self.lang,
vintage=2020, vintage=2020,
country=self.country_ru, country=self.country_ru,
text={'en-GB': 'Text review'}, text={'en-GB': 'Text review'},