File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
qiita_pet/handlers/cloud_handlers/tests Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 11from unittest import main
22from os .path import exists , basename
33from os import remove
4+ import sys
45import filecmp
56
67from qiita_db .handlers .tests .oauthbase import OauthTestingBase
@@ -24,9 +25,13 @@ def test_get(self):
2425 self .assertEqual (obs .status_code , 403 )
2526 self .assertIn ('The requested file is not present' , obs .reason )
2627
28+ print ("STEFAN" ,
29+ endpoint + base_data_dir [1 :] +
30+ '/raw_data/FASTA_QUAL_preprocessing.fna' , file = sys .stderr )
2731 obs = self .get_authed (
2832 endpoint + base_data_dir [1 :] +
2933 '/raw_data/FASTA_QUAL_preprocessing.fna' )
34+ print ("STEFAN2" , obs .reason )
3035 self .assertEqual (obs .status_code , 200 )
3136 self .assertIn ('FLP3FBN01ELBSX length=250 xy=1766_01' , str (obs .content ))
3237
You can’t perform that action at this time.
0 commit comments