Skip to content

Commit

Permalink
Fix: Update tests for tomlkit 0.11.8 changes
Browse files Browse the repository at this point in the history
Adjust tests for the changed behavior in tomlkit 0.11.8.
  • Loading branch information
bjoernricks committed May 5, 2023
1 parent 1d4498e commit 45f0d1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ def test_save_empty_override(self):
expected = """
[tool.autohooks]
pre-commit = []
mode = "pythonpath"
plugins.foo.bar = 'ipsum'
plugins.foo.lorem = 'dolor'
mode = "pythonpath"
[tool.autohooks.plugins.bar]
foo = 'bar'
Expand All @@ -143,9 +143,9 @@ def test_save_override(self):
expected = """
[tool.autohooks]
pre-commit = ["a", "b"]
mode = "poetry"
plugins.foo.bar = 'ipsum'
plugins.foo.lorem = 'dolor'
mode = "poetry"
[tool.autohooks.plugins.bar]
foo = 'bar'
Expand Down

0 comments on commit 45f0d1c

Please sign in to comment.