mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Chore: fix test comments
This commit is contained in:
parent
cf3645c296
commit
8dd355f6bf
@ -306,11 +306,11 @@ class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase):
|
||||
def test_workflow_match_multiple(self):
|
||||
"""
|
||||
GIVEN:
|
||||
- Multiple existing workflow
|
||||
- Multiple existing workflows
|
||||
WHEN:
|
||||
- File that matches is consumed
|
||||
THEN:
|
||||
- Template overrides are applied with subsequent templates overwriting previous values
|
||||
- Workflow overrides are applied with subsequent workflows overwriting previous values
|
||||
or merging if multiple
|
||||
"""
|
||||
trigger1 = WorkflowTrigger.objects.create(
|
||||
@ -373,12 +373,12 @@ class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase):
|
||||
None,
|
||||
)
|
||||
document = Document.objects.first()
|
||||
# template 1
|
||||
# workflow 1
|
||||
self.assertEqual(document.document_type, self.dt)
|
||||
# template 2
|
||||
# workflow 2
|
||||
self.assertEqual(document.correspondent, self.c2)
|
||||
self.assertEqual(document.storage_path, self.sp)
|
||||
# template 1 & 2
|
||||
# workflow 1 & 2
|
||||
self.assertEqual(
|
||||
list(document.tags.all()),
|
||||
[self.t1, self.t2, self.t3],
|
||||
|
Loading…
x
Reference in New Issue
Block a user