From c75ad759209348565eaec356aded9fb815e089e9 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Thu, 1 Jun 2017 19:57:50 +0200 Subject: [PATCH] [tests/module/disk] Adapt to new input parameters Open application now defaults to xdg-open, replace with nautilus manually. --- tests/modules/test_disk.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/modules/test_disk.py b/tests/modules/test_disk.py index 16f31c4..bc40b2a 100644 --- a/tests/modules/test_disk.py +++ b/tests/modules/test_disk.py @@ -20,6 +20,7 @@ class TestDiskModule(unittest.TestCase): self._os = mock.patch("bumblebee.modules.disk.os") self.os = self._os.start() self.config.set("disk.path", "somepath") + self.config.set("disk.open", "nautilus") def tearDown(self): self._os.stop()