From e3f7da54676da58e46424d86ac872184b044d6cd Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 14 Nov 2015 13:26:04 -0800 Subject: [PATCH] Update test for simpler interactive_open --- test/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_util.py b/test/test_util.py index 324a4d589..b72410c9c 100644 --- a/test/test_util.py +++ b/test/test_util.py @@ -43,7 +43,7 @@ class UtilTest(unittest.TestCase): @patch('beets.util.open_anything') def test_interactive_open(self, mock_open, mock_execlp): mock_open.return_value = 'tagada' - util.interactive_open(['foo']) + util.interactive_open(['foo'], util.open_anything()) mock_execlp.assert_called_once_with('tagada', 'tagada', 'foo') mock_execlp.reset_mock()