Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd committed Oct 1, 2018
1 parent d4f8329 commit 60c31e7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion readthedocs/rtd_tests/tests/test_doc_builder.py
Expand Up @@ -353,9 +353,14 @@ def test_write_js_data_docs_dir(self, checkout_path, run, generate_rtd_data):
checkout_path.return_value = tmpdir
generate_rtd_data.return_value = ''

python_env = Virtualenv(
version=self.version,
build_env=self.build_env,
config=None,
)
self.searchbuilder = MkdocsHTML(
build_env=self.build_env,
python_env=None
python_env=python_env,
)
self.searchbuilder.append_conf()

Expand Down

0 comments on commit 60c31e7

Please sign in to comment.