Pass in request as jedi_request in request detail template

Fixes the user sessions/daily traffic fields not being shown when they
should be.
This commit is contained in:
Patrick Smith
2018-09-27 18:14:24 -04:00
parent 9f4663a8d5
commit a859af9eea
6 changed files with 14 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ def test_can_show_financial_data(client, user_session):
)
body = response.data.decode()
assert re.search(">\s+Financial Verification\s+<", body)
assert re.search(r">\s+Financial Verification\s+<", body)
def test_can_not_show_financial_data(client, user_session):
@@ -34,4 +34,4 @@ def test_can_not_show_financial_data(client, user_session):
)
body = response.data.decode()
assert not re.search(">\s+Financial Verification\s+<", body)
assert not re.search(r">\s+Financial Verification\s+<", body)