From bc316dd1fe8ca384d70160d661b5cc3c3843ef5b Mon Sep 17 00:00:00 2001 From: Ken Tsang Date: Fri, 8 Dec 2017 17:32:57 +0000 Subject: [PATCH] Add reference as part of sample_letter_notification --- tests/app/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/conftest.py b/tests/app/conftest.py index 3706494f2..c8f06e8c4 100644 --- a/tests/app/conftest.py +++ b/tests/app/conftest.py @@ -603,7 +603,7 @@ def sample_letter_notification(sample_letter_template): 'address_line_6': 'A6', 'postcode': 'A_POST' } - return create_notification(sample_letter_template, personalisation=address) + return create_notification(sample_letter_template, reference='foo', personalisation=address) @pytest.fixture(scope='function')