From 4b719bf35bfb355ac070661381b7b0e3c72020a9 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 17 Jun 2020 19:44:44 +0200 Subject: [PATCH] cours: corrige les tests --- illustrations/1_tester/test_unitaire.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/illustrations/1_tester/test_unitaire.py b/illustrations/1_tester/test_unitaire.py index 4cba9b5..1c57571 100644 --- a/illustrations/1_tester/test_unitaire.py +++ b/illustrations/1_tester/test_unitaire.py @@ -19,8 +19,8 @@ def est_premier(n): def reverse_words(S): """ >>> reverse_words("abc def") - cba fed + 'cba fed' >>> reverse_words("bonjour bonsoir") - roujnob riosnob + 'roujnob riosnob' """ pass