sidebar: Don't pop up the dir chooser popover during testing

This can cause a segfault for some reason, but the test works perfectly
fine without it.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
This commit is contained in:
Anna Schumaker 2021-10-13 10:38:30 -04:00
parent 3d77e8cd2a
commit 472280ca9b
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class TestLibrarySidebar(unittest.TestCase):
self.assertTrue(library.DirSelect.has_css_class("suggested-action"))
self.assertIn(library.DirSelect, library.DirBox)
library.Popover.popup()
#library.Popover.popup()
gfile = Gio.File.new_for_path(str(test_library))
self.assertTrue(library.DirChooser.set_current_folder(gfile))
while main_context.iteration(may_block=False): pass