Skip to content

Commit cca5798

Browse files
committed
test: fix TestVenvManagerInternet
Signed-off-by: Samuel Amen Ague <ague.samuel27@gmail.com>
1 parent 38e5fd7 commit cca5798

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/test_venv_manager_internet.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def test_ensure_tools_installed_no_internet(self, mock_check):
2424
# Should emit a localized error and return early
2525
self.output_error.assert_called_with(
2626
(
27-
"🛑 [ERROR] Pas de connexion internet. Installation des outils annulée.",
28-
"🛑 [ERROR] No internet connection. Tool installation cancelled.",
27+
"Pas de connexion internet. Installation des outils annulée.",
28+
"No internet connection. Tool installation cancelled.",
2929
),
3030
gui=self.mock_parent,
3131
)
@@ -41,8 +41,8 @@ def test_ensure_tools_installed_system_no_internet(self, mock_check):
4141

4242
self.output_error.assert_called_with(
4343
(
44-
"🛑 [ERROR] Pas de connexion internet. Installation système annulée.",
45-
"🛑 [ERROR] No internet connection. System installation cancelled.",
44+
"Pas de connexion internet. Installation système annulée.",
45+
"No internet connection. System installation cancelled.",
4646
),
4747
gui=self.mock_parent,
4848
)

0 commit comments

Comments
 (0)