Skip to content

Commit

Permalink
Merge branch 'master' into simplify-navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchristie committed Apr 25, 2024
2 parents 1d729f0 + 24ae829 commit d295dd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mkdocs/tests/config/config_options_tests.py
Expand Up @@ -1594,7 +1594,8 @@ class Schema(Config):
validation = c.PropagatingSubConfig[defaults.MkDocsConfig.Validation]()

def test_unspecified(self) -> None:
for cfg in {}, {'validation': {}}:
cfgs: list[dict] = [{}, {'validation': {}}]
for cfg in cfgs:
with self.subTest(cfg):
conf = self.get_config(
self.Schema,
Expand Down

0 comments on commit d295dd4

Please sign in to comment.