diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-09-03 15:57:30 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-09-03 15:57:30 +0300 |
commit | fcc822f87a01632c677e2f63ee7456f18ac7d8c4 (patch) | |
tree | 700bca2502997202817e23866299927fdd738cfb /tests/test_gsxws.py | |
parent | 5d911ba781b5515b461a2536590409a7120d7940 (diff) | |
download | py-gsxws-fcc822f87a01632c677e2f63ee7456f18ac7d8c4.tar.gz py-gsxws-fcc822f87a01632c677e2f63ee7456f18ac7d8c4.tar.bz2 py-gsxws-fcc822f87a01632c677e2f63ee7456f18ac7d8c4.zip |
Updated escalation test
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') |