diff options
Diffstat (limited to 'tests/test_gsxws.py')
-rw-r--r-- | tests/test_gsxws.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index 8690524..64a387f 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -202,11 +202,10 @@ class TestEscalationFunctions(RemoteTestCase): result = esc.update() self.assertEqual(result.updateStatus, 'SUCCESS') - @skip("Skip") def test_attach_general_escalation(self): esc = escalations.Escalation() esc.escalationId = self.escalation.escalationId - esc.attachment = escalations.FileAttachment('/tmp/logo.png') + esc.attachment = escalations.FileAttachment(env['GSX_FILE']) result = esc.update() self.assertEqual(result.updateStatus, 'SUCCESS') |