Skip to content

Commit ac65caf

Browse files
committed
fix path of online files
1 parent 1e7d988 commit ac65caf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sugar/tests/test_io.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,19 +131,19 @@ def test_write_archive():
131131

132132
@pytest.mark.webtest
133133
def test_download():
134-
url = 'https://raw.githubusercontent.com/rnajena/sugar/master/sugar/tests/data/example.gb'
134+
url = 'https://raw.githubusercontent.com/rnajena/sugar/master/src/sugar/tests/data/example.gb'
135135
assert read(url) == read()
136136

137137

138138
@pytest.mark.webtest
139139
def test_download_uncompress():
140-
url = 'https://raw.githubusercontent.com/rnajena/sugar/master/sugar/tests/data/io_test.gz'
140+
url = 'https://raw.githubusercontent.com/rnajena/sugar/master/src/sugar/tests/data/io_test.gz'
141141
assert read(url) == read()
142142

143143

144144
@pytest.mark.webtest
145145
def test_download_zip():
146-
url = 'https://raw.githubusercontent.com/rnajena/sugar/master/sugar/tests/data/io_test.zip'
146+
url = 'https://raw.githubusercontent.com/rnajena/sugar/master/src/sugar/tests/data/io_test.zip'
147147
assert read()[0] in read(url)
148148

149149

0 commit comments

Comments
 (0)