Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthew White <mehw.is.me@inventati.org>2021-05-15 23:25:58 +0300
committerPhilipp Hörist <philipp@hoerist.com>2021-07-18 14:26:58 +0300
commit15cf0e2a9e6a7498be4d215e755437f10da633a6 (patch)
tree95f607bac1b46c7df3f95a6d82686dce0b4b721c /test
parenta08eab5a2a879a05386e1519a85a86693d07ab8d (diff)
Test: Fix test_gui_interface failure
Partially fixes #10478 about the following error: ERROR: test_gui_interface (unittest.loader._FailedTest) ... ModuleNotFoundError: No module named 'gajim.gui.emoji_data'
Diffstat (limited to 'test')
-rw-r--r--test/unit/test_gui_interface.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/unit/test_gui_interface.py b/test/unit/test_gui_interface.py
index 41274dfd4..6ad2d734b 100644
--- a/test/unit/test_gui_interface.py
+++ b/test/unit/test_gui_interface.py
@@ -3,6 +3,9 @@ Some diverse tests covering functionality in the GUI Interface class.
'''
import unittest
+import gajim.gui
+gajim.gui.init('gtk')
+
from test import lib
lib.setup_env()