Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed May 9, 2024
1 parent 464698b commit a6eff6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suggestions/cogs/suggestion_notes_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
logger: Logger = Logger(__name__)


class SuggestionsNotes(commands.Cog):
class SuggestionNotesCog(commands.Cog):
def __init__(self, bot):
self.bot = bot
self.state = bot.state
Expand Down Expand Up @@ -96,4 +96,4 @@ async def get_sid_for(


def setup(bot):
bot.add_cog(SuggestionsNotes(bot))
bot.add_cog(SuggestionNotesCog(bot))
1 change: 1 addition & 0 deletions tests/test_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ async def test_cogs_loaded(causar: Causar):
"SuggestionsMessageCommands",
"SuggestionsQueueCog",
"BlacklistCog",
"SuggestionNotesCog",
]
assert len(bot.cogs) == len(cog_names)
for cog_name in cog_names:
Expand Down

0 comments on commit a6eff6e

Please sign in to comment.