From 9ad7c21407bee6a43962fd71a9eee35868227d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Sverre=20Lien=20Sell=C3=A6g?= Date: Tue, 8 Sep 2020 16:42:15 +0200 Subject: [PATCH] update config test to not fail. Needs updating according to new config options --- tests/python_bindings/Config_tests/config_test.py | 6 +++--- tests/stubs/config.cc | 4 ---- tests/stubs/config.cpp | 1 - 3 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 tests/stubs/config.cc diff --git a/tests/python_bindings/Config_tests/config_test.py b/tests/python_bindings/Config_tests/config_test.py index 610cbf3..7ce7130 100644 --- a/tests/python_bindings/Config_tests/config_test.py +++ b/tests/python_bindings/Config_tests/config_test.py @@ -33,7 +33,7 @@ def project(): project.meson = meson project.cmake = cmake project.save_on_compile_or_run = True - project.clear_terminal_on_compile = False + # project.clear_terminal_on_compile = False project.ctags_command = "ctags" project.python_command = "python" Config().project = project @@ -49,7 +49,7 @@ def source(): source.format_style_on_save_if_style_file_found = False source.smart_inserts = False source.show_map = False - source.map_font_size = "10px" + # source.map_font_size = "10px" source.show_git_diff = False source.show_background_pattern = False source.show_right_margin = False @@ -58,7 +58,7 @@ def source(): source.default_tab_char = "c" source.default_tab_size = 1 source.tab_indents_line = False - source.wrap_lines = False + # source.wrap_lines = False source.highlight_current_line = False source.show_line_numbers = False source.enable_multiple_cursors = False diff --git a/tests/stubs/config.cc b/tests/stubs/config.cc deleted file mode 100644 index 52f73ea..0000000 --- a/tests/stubs/config.cc +++ /dev/null @@ -1,4 +0,0 @@ -#include "config.h" - -Config::Config() {} -void Config::load() {} diff --git a/tests/stubs/config.cpp b/tests/stubs/config.cpp index e798955..1795590 100644 --- a/tests/stubs/config.cpp +++ b/tests/stubs/config.cpp @@ -2,4 +2,3 @@ Config::Config() {} void Config::load() {} -void Config::init_module(py::module &) {}