Spaces:
Paused
Paused
Davide Fiocco commited on
Commit ·
cc268eb
1
Parent(s): 0068562
Update tests
Browse files- test_answers.py +3 -3
test_answers.py
CHANGED
|
@@ -34,13 +34,13 @@ def test_year():
|
|
| 34 |
def test_home():
|
| 35 |
q = "Dove vivo?"
|
| 36 |
a = get_answer(q)
|
| 37 |
-
assert "
|
| 38 |
|
| 39 |
|
| 40 |
def test_address():
|
| 41 |
q = "Qual è l'indirizzo di casa?"
|
| 42 |
a = get_answer(q)
|
| 43 |
-
assert "
|
| 44 |
|
| 45 |
|
| 46 |
def test_history():
|
|
@@ -76,7 +76,7 @@ def test_caregiver():
|
|
| 76 |
def test_recovery():
|
| 77 |
q = "Come va il mio recupero?"
|
| 78 |
a = get_answer(q)
|
| 79 |
-
assert "
|
| 80 |
|
| 81 |
|
| 82 |
def test_family():
|
|
|
|
| 34 |
def test_home():
|
| 35 |
q = "Dove vivo?"
|
| 36 |
a = get_answer(q)
|
| 37 |
+
assert "Verona" in a
|
| 38 |
|
| 39 |
|
| 40 |
def test_address():
|
| 41 |
q = "Qual è l'indirizzo di casa?"
|
| 42 |
a = get_answer(q)
|
| 43 |
+
assert "Camillo" in a
|
| 44 |
|
| 45 |
|
| 46 |
def test_history():
|
|
|
|
| 76 |
def test_recovery():
|
| 77 |
q = "Come va il mio recupero?"
|
| 78 |
a = get_answer(q)
|
| 79 |
+
assert "procede" in a
|
| 80 |
|
| 81 |
|
| 82 |
def test_family():
|