We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f74151 commit 71a0a65Copy full SHA for 71a0a65
tests/test_cli.py
@@ -695,4 +695,8 @@ def test_local_extension_update(cruft_runner, tmpdir):
695
)
696
assert result.exit_code == 0
697
with open(tmpdir / "test" / "README.md") as f:
698
- assert "Updated11" in f.read()
+ contents = f.read()
699
+ # check if the text has been updated
700
+ assert "Updated11" in contents
701
+ # check if the extension has been updated
702
+ assert "This has been updated" in contents
0 commit comments