Skip to content

Commit 737207c

Browse files
committed
fix error
1 parent 8720d28 commit 737207c

File tree

1 file changed

+2
-20
lines changed

1 file changed

+2
-20
lines changed

qiita_pet/handlers/api_proxy/tests/test_processing.py

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,11 @@
1313
from qiita_db.software import Command, Parameters
1414
from qiita_db.user import User
1515
from qiita_pet.handlers.api_proxy.processing import (
16-
process_artifact_handler_get_req, list_commands_handler_get_req,
17-
list_options_handler_get_req, workflow_handler_post_req,
18-
workflow_handler_patch_req, job_ajax_get_req)
16+
list_commands_handler_get_req, list_options_handler_get_req,
17+
workflow_handler_post_req, workflow_handler_patch_req, job_ajax_get_req)
1918

2019

2120
class TestProcessingAPIReadOnly(TestCase):
22-
def test_process_artifact_handler_get_req(self):
23-
obs = process_artifact_handler_get_req(1)
24-
exp = {'status': 'success',
25-
'message': '',
26-
'name': 'Raw data 1',
27-
'type': 'FASTQ',
28-
'study_id': 1}
29-
self.assertEqual(obs, exp)
30-
31-
obs = process_artifact_handler_get_req(2)
32-
exp = {'status': 'success',
33-
'message': '',
34-
'name': 'Demultiplexed 1',
35-
'type': 'Demultiplexed',
36-
'study_id': 1}
37-
self.assertEqual(obs, exp)
38-
3921
def test_list_commands_handler_get_req(self):
4022
obs = list_commands_handler_get_req('FASTQ', True)
4123
exp = {'status': 'success',

0 commit comments

Comments
 (0)