Skip to content

Commit

Permalink
Merge pull request #4575 from stsewd/update-tests
Browse files Browse the repository at this point in the history
Update tests failing on master
  • Loading branch information
humitos committed Aug 28, 2018
2 parents fefdea4 + 30bfa3d commit dde104d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readthedocs/config/tests/test_config.py
Expand Up @@ -736,7 +736,7 @@ def test_requirements_file_is_null(tmpdir):
source_file=str(tmpdir.join('readthedocs.yml')),
)
build.validate()
assert build.requirements_file is None
assert build.python.requirements is None


def test_requirements_file_is_blank(tmpdir):
Expand All @@ -746,7 +746,7 @@ def test_requirements_file_is_blank(tmpdir):
source_file=str(tmpdir.join('readthedocs.yml')),
)
build.validate()
assert build.requirements_file is None
assert build.python.requirements is None


def test_build_validate_calls_all_subvalidators(tmpdir):
Expand Down

0 comments on commit dde104d

Please sign in to comment.