Code styling tweaks to the tests - Part 2 (#86662)

Co-authored-by: jjlawren <jjlawren@users.noreply.github.com>
This commit is contained in:
Franck Nijhof 2023-01-26 01:23:53 +01:00 committed by GitHub
parent 7ab88fa713
commit e50a531cd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 734 additions and 360 deletions

View file

@ -60,6 +60,6 @@ async def test_callrate_limit(hass, caplog):
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()
assert (
"Exceeded the Kraken.com call rate limit. Increase the update interval to prevent this error"
in caplog.text
"Exceeded the Kraken.com call rate limit. Increase the update interval to"
" prevent this error" in caplog.text
)