We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 486e04d commit 503b375Copy full SHA for 503b375
Roadmap/13 - PRUEBAS UNITARIAS/python/Irenetitor.py
@@ -52,11 +52,11 @@ def test_exist_fields(self):
52
self.assertIn("birth_date", self.user_data)
53
self.assertIn("languages", self.user_data)
54
55
- def test_user_data_correct(self):
+ def test_user_gitdata_correct(self):
56
self.assertIsInstance(self.user_data["name"], str)
57
self.assertIsInstance(self.user_data["age"], int)
58
self.assertIsInstance(self.user_data["birth_date"], date)
59
- self.assertIsInstance(self.user_data["programming_languages"], list)
+ self.assertIsInstance(self.user_data["languages"], list)
60
61
62
if __name__ == "__main__":
0 commit comments