diff options
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r-- | tools/python_test_v4.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index cb199b7..f126719 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -435,6 +435,7 @@ note = issue1.notes.create({'body': 'This is an issue note'}) assert(len(issue1.notes.list()) == 1) note.delete() assert(len(issue1.notes.list()) == 0) +assert(isinstance(issue1.user_agent_detail(), dict)) # tags tag1 = admin_project.tags.create({'tag_name': 'v1.0', 'ref': 'master'}) |