Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion SoftLayer/managers/ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def create_ticket(self, title=None, body=None, subject=None, priority=None):
current_user = self.account.getCurrentUser()
new_ticket = {
'subjectId': subject,
'contents': body,
'assignedUserId': current_user['id'],
'title': title,
}
Expand Down
4 changes: 0 additions & 4 deletions tests/CLI/modules/ticket_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def test_create(self):
self.assert_no_fail(result)

args = ({'subjectId': 1000,
'contents': 'ticket body',
'assignedUserId': 12345,
'title': 'Test'}, 'ticket body')

Expand All @@ -70,7 +69,6 @@ def test_create_with_priority(self):
self.assert_no_fail(result)

args = ({'subjectId': 1000,
'contents': 'ticket body',
'assignedUserId': 12345,
'title': 'Test',
'priority': 1}, 'ticket body')
Expand All @@ -87,7 +85,6 @@ def test_create_and_attach(self):
self.assert_no_fail(result)

args = ({'subjectId': 1000,
'contents': 'ticket body',
'assignedUserId': 12345,
'title': 'Test'}, 'ticket body')

Expand All @@ -108,7 +105,6 @@ def test_create_no_body(self, edit_mock):
self.assert_no_fail(result)

args = ({'subjectId': 1000,
'contents': 'ticket body',
'assignedUserId': 12345,
'title': 'Test'}, 'ticket body')

Expand Down
1 change: 0 additions & 1 deletion tests/managers/ticket_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def test_create_ticket(self):
subject=1004)

args = ({"assignedUserId": 12345,
"contents": "body",
"subjectId": 1004,
"title": "Cloud Instance Cancellation - 08/01/13"},
"body")
Expand Down