From fffbd5c1dcc0450603a260cafdb93425ab956660 Mon Sep 17 00:00:00 2001 From: amandine-sahl Date: Thu, 1 Aug 2024 17:00:30 +0200 Subject: [PATCH] fix tests --- .../tests/test_commands/test_commands.py | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/backend/gn_module_monitoring/tests/test_commands/test_commands.py b/backend/gn_module_monitoring/tests/test_commands/test_commands.py index 04bdb774f..622d6c30b 100644 --- a/backend/gn_module_monitoring/tests/test_commands/test_commands.py +++ b/backend/gn_module_monitoring/tests/test_commands/test_commands.py @@ -9,8 +9,7 @@ from gn_module_monitoring.tests.fixtures.generic import * from gn_module_monitoring.command.cmd import ( cmd_remove_monitoring_module_cmd, - cmd_process_all, - cmd_process_export_csv, + cmd_process_sql, cmd_process_available_permission_module, cmd_add_module_nomenclature_cli, ) @@ -42,21 +41,14 @@ def test_remove_monitoring_module(self, install_module_test): def test_process_all_with_module(self, install_module_test): runner = current_app.test_cli_runner() # Commande process all - result = runner.invoke(cmd_process_all, ["test"]) - # Pas de result juste - assert result.exit_code == 0 - result = runner.invoke(cmd_process_export_csv, ["test"]) + result = runner.invoke(cmd_process_sql, ["test"]) # Pas de result juste assert result.exit_code == 0 def test_process_all_without_module(self, install_module_test): runner = current_app.test_cli_runner() # Commande process all - result = runner.invoke(cmd_process_all) - # Pas de result - assert result.exit_code == 0 - - result = runner.invoke(cmd_process_export_csv) + result = runner.invoke(cmd_process_sql) # Pas de result assert result.exit_code == 0 @@ -64,7 +56,7 @@ def test_process_all_with_module(self, install_module_test): runner = current_app.test_cli_runner() # Commande process all # import pdb - result = runner.invoke(cmd_process_all, ["test"]) + result = runner.invoke(cmd_process_sql, ["test"]) # Pas de result juste assert result.exit_code == 0