Skip to content

Commit dde104d

Browse files
authored
Merge pull request #4575 from stsewd/update-tests
Update tests failing on master
2 parents fefdea4 + 30bfa3d commit dde104d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readthedocs/config/tests/test_config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ def test_requirements_file_is_null(tmpdir):
736736
source_file=str(tmpdir.join('readthedocs.yml')),
737737
)
738738
build.validate()
739-
assert build.requirements_file is None
739+
assert build.python.requirements is None
740740

741741

742742
def test_requirements_file_is_blank(tmpdir):
@@ -746,7 +746,7 @@ def test_requirements_file_is_blank(tmpdir):
746746
source_file=str(tmpdir.join('readthedocs.yml')),
747747
)
748748
build.validate()
749-
assert build.requirements_file is None
749+
assert build.python.requirements is None
750750

751751

752752
def test_build_validate_calls_all_subvalidators(tmpdir):

0 commit comments

Comments
 (0)