Skip to content

Commit

Permalink
tmp: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgray-stripe committed Nov 8, 2024
1 parent aaca598 commit 8b213c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_profile.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
from goose.profile import ToolkitSpec, ObserverSpec


def test_profile_info(profile_factory):
profile = profile_factory(
{
"provider": "provider",
"processor": "processor",
"toolkits": [ToolkitSpec("developer"), ToolkitSpec("github")],
"observers": [ObserverSpec(name="test.plugin")]
"observers": [ObserverSpec(name="test.plugin")],
}
)
assert profile.profile_info() == "provider:provider, processor:processor toolkits: developer, github observers: test.plugin"
assert (
profile.profile_info()
== "provider:provider, processor:processor toolkits: developer, github observers: test.plugin"
)

0 comments on commit 8b213c5

Please sign in to comment.