Flask - Testing Flask Applications
Identify the error in this test code:
The test fails with a UnicodeDecodeError when printing response.data.
client = app.test_client()
response = client.get('/dashboard')
print(response.data)The test fails with a UnicodeDecodeError when printing response.data.
