Skip to content

Commit

Permalink
fix: config tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Jan 12, 2024
1 parent 3661524 commit 4a08a8b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
# 3rd party
from mkdocs.config.base import Config

from mkdocs_rss_plugin.config import RssPluginConfig

# plugin target
from mkdocs_rss_plugin.config import RssPluginConfig
from mkdocs_rss_plugin.plugin import GitRssPlugin

# test suite
Expand Down Expand Up @@ -67,9 +66,11 @@ def test_plugin_config_defaults(self):
"enabled": True,
"feed_ttl": 1440,
"image": None,
"json_feed_enabled": True,
"length": 20,
"match_path": ".*",
"pretty_print": False,
"rss_feed_enabled": True,
"url_parameters": None,
"use_git": True,
"use_material_social_cards": True,
Expand All @@ -95,9 +96,11 @@ def test_plugin_config_image(self):
"enabled": True,
"feed_ttl": 1440,
"image": self.feed_image,
"json_feed_enabled": True,
"length": 20,
"match_path": ".*",
"pretty_print": False,
"rss_feed_enabled": True,
"url_parameters": None,
"use_git": True,
"use_material_social_cards": True,
Expand Down

0 comments on commit 4a08a8b

Please sign in to comment.