def test_drink_potion(self):
     character = Character('Test', 100, 10)
     character.drink_potion()
     self.assertEqual(character.hp, 110)