Skip to content

Commit d5f00d7

Browse files
committed
debug
1 parent 5bad769 commit d5f00d7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

qiita_pet/handlers/cloud_handlers/tests/test_file_transfer_handlers.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from unittest import main
22
from os.path import exists, basename
33
from os import remove
4+
import sys
45
import filecmp
56

67
from 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

0 commit comments

Comments
 (0)