def test_result_get_note_using_note_id_is_of_type_string(self): obj = NotesApplication('Lolo') obj.create('This is Andela') note = obj.get_note(0) self.assertEqual(True, type(note) is str)