From f9ff23a2c86711b60c03dad8eb88ac9e16296e34 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 9 Nov 2022 09:36:46 -0600 Subject: [PATCH] Fix benign typo in test_config_entries.py (#81789) * Fix typo in test_config_entries.py * touch ups * Update tests/test_config_entries.py Co-authored-by: Martin Hjelmare Co-authored-by: Erik Montnemery Co-authored-by: Martin Hjelmare --- tests/test_config_entries.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_config_entries.py b/tests/test_config_entries.py index 080b3cdf5f1..96d032f771e 100644 --- a/tests/test_config_entries.py +++ b/tests/test_config_entries.py @@ -3316,17 +3316,17 @@ async def test_reauth(hass): assert entry.entry_id != entry2.entry_id - # Check we can't start duplicate flows + # Check that we can't start duplicate reauth flows entry.async_start_reauth(hass, {"extra_context": "some_extra_context"}) await hass.async_block_till_done() assert len(hass.config_entries.flow.async_progress()) == 1 - # Check we can't start duplicate when the context context is different + # Check that we can't start duplicate reauth flows when the context is different entry.async_start_reauth(hass, {"diff": "diff"}) await hass.async_block_till_done() assert len(hass.config_entries.flow.async_progress()) == 1 - # Check we can start a reauth for a different entry + # Check that we can start a reauth flow for a different entry entry2.async_start_reauth(hass, {"extra_context": "some_extra_context"}) await hass.async_block_till_done() assert len(hass.config_entries.flow.async_progress()) == 2