diff --git a/mayan/apps/document_indexing/tests/test_models.py b/mayan/apps/document_indexing/tests/test_models.py index 77a229eba3..1e4976cd41 100644 --- a/mayan/apps/document_indexing/tests/test_models.py +++ b/mayan/apps/document_indexing/tests/test_models.py @@ -192,8 +192,8 @@ class IndexTestCase(DocumentTestMixin, BaseTestCase): self.assertEqual( [instance.value for instance in IndexInstanceNode.objects.all().order_by('pk')], [ - '', force_text(self.document.uuid), self.document.label, - force_text(self.document_2.uuid), self.document_2.label + '', force_text(self.document_2.uuid), self.document_2.label, + force_text(self.document.uuid), self.document.label ] )