Fix tests_gui_local/onionshare_receive_mode_upload_test_public_mode.py tests

This commit is contained in:
Micah Lee 2018-09-30 18:19:25 -07:00
parent e6302f3ba4
commit c7c3120a0c
4 changed files with 75 additions and 73 deletions

View file

@ -151,7 +151,10 @@ def time_strftime(monkeypatch):
@pytest.fixture
def common_obj():
return common.Common()
_common = common.Common()
_common.settings = settings.Settings(_common)
strings.load_strings(_common)
return _common
@pytest.fixture
def settings_obj(sys_onionshare_dev_mode, platform_linux):