Skip to content

Commit a6c5e17

Browse files
authored
Fix dead URLs in test_conserved_quantities_demartino.py (#2072)
Files now stored at #1886 (comment)
1 parent 252da79 commit a6c5e17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/tests/test_conserved_quantities_demartino.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def data_demartino2014():
4141

4242
# stoichiometric matrix
4343
response = urllib.request.urlopen(
44-
r'https://chimera.roma1.infn.it/SYSBIO/test-ecoli.dat.gz',
44+
r'https://github.com/AMICI-dev/AMICI/files/11430971/DeMartinoDe2014_test-ecoli.dat.gz',
4545
timeout=10
4646
)
4747
data = gzip.GzipFile(fileobj=io.BytesIO(response.read()))
@@ -51,7 +51,7 @@ def data_demartino2014():
5151

5252
# metabolite / row names
5353
response = urllib.request.urlopen(
54-
r'https://chimera.roma1.infn.it/SYSBIO/test-ecoli-met.txt',
54+
r'https://github.com/AMICI-dev/AMICI/files/11430970/test-ecoli-met.txt',
5555
timeout=10
5656
)
5757
row_names = [entry.decode('ascii').strip()

0 commit comments

Comments
 (0)