1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-01-05 21:34:17 +01:00

Fix unit tests

This commit is contained in:
2024-09-13 18:16:45 +02:00
parent 463f6ed705
commit a5606272cd
11 changed files with 65 additions and 68 deletions

View File

@@ -1,20 +1,12 @@
from unittest import TestCase
import os
try:
from unittest import mock
except ImportError:
import mock
from unittest import mock
from fs_uae_wrapper import message
if os.environ.get('DISPLAY'):
try:
import tkinter as tk
from tkinter import ttk
except ImportError:
import Tkinter as tk
import ttk
import tkinter as tk
from tkinter import ttk
class TestMessage(TestCase):