Skip to content

Commit c7deb3a

Browse files
committed
Fix up the tests
1 parent 4dd4afb commit c7deb3a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

readthedocs/rtd_tests/tests/test_doc_builder.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -153,16 +153,16 @@ def test_append_conf_create_yaml(self, checkout_path, run):
153153
self.assertEqual(
154154
config['extra_css'],
155155
[
156-
'http://readthedocs.org/media/css/badge_only.css',
157-
'http://readthedocs.org/media/css/readthedocs-doc-embed.css'
156+
'http://readthedocs.org/static/css/badge_only.css',
157+
'http://readthedocs.org/static/css/readthedocs-doc-embed.css'
158158
]
159159
)
160160
self.assertEqual(
161161
config['extra_javascript'],
162162
[
163163
'readthedocs-data.js',
164-
'http://readthedocs.org/media/static/core/js/readthedocs-doc-embed.js',
165-
'http://readthedocs.org/media/javascript/readthedocs-analytics.js',
164+
'http://readthedocs.org/static/core/js/readthedocs-doc-embed.js',
165+
'http://readthedocs.org/static/javascript/readthedocs-analytics.js',
166166
]
167167
)
168168
self.assertIsNone(
@@ -205,16 +205,16 @@ def test_append_conf_existing_yaml_on_root(self, checkout_path, run):
205205
self.assertEqual(
206206
config['extra_css'],
207207
[
208-
'http://readthedocs.org/media/css/badge_only.css',
209-
'http://readthedocs.org/media/css/readthedocs-doc-embed.css'
208+
'http://readthedocs.org/static/css/badge_only.css',
209+
'http://readthedocs.org/static/css/readthedocs-doc-embed.css'
210210
]
211211
)
212212
self.assertEqual(
213213
config['extra_javascript'],
214214
[
215215
'readthedocs-data.js',
216-
'http://readthedocs.org/media/static/core/js/readthedocs-doc-embed.js',
217-
'http://readthedocs.org/media/javascript/readthedocs-analytics.js',
216+
'http://readthedocs.org/static/core/js/readthedocs-doc-embed.js',
217+
'http://readthedocs.org/static/javascript/readthedocs-analytics.js',
218218
]
219219
)
220220
self.assertIsNone(

0 commit comments

Comments
 (0)