Skip to content

Commit

Permalink
fix cli test
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 authored Jun 18, 2024
1 parent 6ff686d commit 48ff20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ def setUpClass(cls):

def test_get_args(self):
args = get_args(["all", "user"])
self.assertEqual(len(vars(args)), 3)
self.assertEqual(len(vars(args)), 4)
args = get_args(["create", "playlist-link"])
self.assertEqual(len(vars(args)), 7)
self.assertEqual(len(vars(args)), 8)
args = get_args(["update", "playlist-link", "playlist-name"])
self.assertEqual(len(vars(args)), 5)
args = get_args(["setup"])
Expand Down

0 comments on commit 48ff20a

Please sign in to comment.