Skip to content

Commit

Permalink
Updated youtube plugin version and unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason committed May 2, 2019
1 parent b1a630f commit c505012
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/youtube/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Plugin(PluginBase):
<b>!queue/!q</b>: Displays the youtube queue.<br>\
<b>!song</b>: Shows currently playing track.<br>\
<b>!clear</b>: Clears the current youtube queue.<br>"
plugin_version = "2.1.0"
plugin_version = "2.2.1"
priv_path = "youtube/youtube_privileges.csv"

sound_board_plugin = None
Expand Down
2 changes: 1 addition & 1 deletion tests/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_version_bot_commands(self):

def test_version_youtube(self):
cur_plugin = self.bot_plugins.get('youtube')
self.assertEqual(cur_plugin.get_plugin_version(), "2.1.0")
self.assertEqual(cur_plugin.get_plugin_version(), "2.2.1")

def test_version_sound_board(self):
cur_plugin = self.bot_plugins.get('sound_board')
Expand Down

0 comments on commit c505012

Please sign in to comment.