Skip to content

Commit 25f226a

Browse files
author
Will Trimble
committed
Problem with test fixtures--broken dataset?
1 parent ca265f5 commit 25f226a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,21 +81,21 @@ def test_matrix_04():
8181
o.write(str(obj))
8282

8383
def test_large_01():
84-
URI = API_URL + '/matrix/organism?group_level=phylum&source=RDP&hit_type=single&result_type=abundance&evalue=1&identity=60&length=15&taxid=0&id=mgm4510219.3'
84+
URI = API_URL + '/matrix/organism?group_level=phylum&source=RDP&hit_type=single&result_type=abundance&evalue=1&identity=60&length=15&taxid=0&id=mgm4440026.3'
8585
obj = obj_from_url(URI)
8686
o = open("5.txt", "w")
8787
o.write(str(obj))
8888
os.remove("5.txt")
8989

9090
def test_large_02():
91-
URI = API_URL + '/matrix/organism?group_level=phylum&source=RefSeq&hit_type=single&result_type=abundance&evalue=1&identity=60&length=15&taxid=0&id=mgm4510219.3'
91+
URI = API_URL + '/matrix/organism?group_level=phylum&source=RefSeq&hit_type=single&result_type=abundance&evalue=1&identity=60&length=15&taxid=0&id=mgm4440026.3'
9292
obj = obj_from_url(URI)
9393
o = open("6.txt", "w")
9494
o.write(str(obj))
9595
os.remove("6.txt")
9696

9797
def test_large_03():
98-
URI = API_URL + '/matrix/organism?group_level=phylum&source=SEED&hit_type=single&result_type=abundance&evalue=1&identity=60&length=15&taxid=0&id=mgm4510219.3'
98+
URI = API_URL + '/matrix/organism?group_level=phylum&source=SEED&hit_type=single&result_type=abundance&evalue=1&identity=60&length=15&taxid=0&id=mgm4440026.3'
9999
obj = obj_from_url(URI)
100100
o = open("7.txt", "w")
101101
o.write(str(obj))

0 commit comments

Comments
 (0)