diff options
Diffstat (limited to 'tests/test_gsxws.py')
-rw-r--r-- | tests/test_gsxws.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index 5571c22..57b83ab 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -44,7 +44,8 @@ class TestTypes(TestCase): self.assertGreater(datetime.now(), self.data.createTimestamp) def test_list(self): - self.assertIsInstance(self.data.escalationNotes, list) + for x in self.data.escalationNotes.iterchildren(): + self.assertIsInstance(x.text, str) class TestErrorFunctions(TestCase): |