From 0f57c4acd5dda2510822e496b4ddd49447cce4d4 Mon Sep 17 00:00:00 2001 From: Peter Kessen Date: Thu, 17 Sep 2015 20:46:32 +0200 Subject: [PATCH] fixed spaces at end of lines --- test/test_ui_commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_ui_commands.py b/test/test_ui_commands.py index e873c9b7b..08f44eb57 100644 --- a/test/test_ui_commands.py +++ b/test/test_ui_commands.py @@ -50,7 +50,7 @@ class QueryTest(_common.TestCase): album = self.lib.add_album(items) return album - def check_do_query(self, num_items, num_albums, + def check_do_query(self, num_items, num_albums, q=(), album=False, also_items=True): items, albums = commands._do_query( self.lib, q, album, also_items) @@ -82,7 +82,6 @@ class QueryTest(_common.TestCase): self.add_album([item, item2]) self.check_do_query(3, 2, album=True) self.check_do_query(0, 2, album=True, also_items=False) - def suite():