diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-10-10 10:05:10 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-10-10 10:05:10 +0200 |
commit | ea3300de1269c1c2e1fe76f6a6dec534936cc303 (patch) | |
tree | d3f7690266ca04c3a3d99444880d2c64972dc23f /tests/test_server.py | |
parent | b2055032cb914fd160270971dd1da46f8c7c838d (diff) | |
download | haketilo-hydrilla-ea3300de1269c1c2e1fe76f6a6dec534936cc303.tar.gz haketilo-hydrilla-ea3300de1269c1c2e1fe76f6a6dec534936cc303.zip |
[builder][server] fix old tests
Diffstat (limited to 'tests/test_server.py')
-rw-r--r-- | tests/test_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_server.py b/tests/test_server.py index fda8490..db7ca31 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -123,7 +123,7 @@ def index_json_modification(modify_index_json): def handle_index_json(setup): """Modify index.json before build.""" index_path = setup.source_dir / 'index.json' - index_json, _ = json_instances.read_instance(index_path) + index_json = json_instances.read_instance(index_path) index_json = modify_index_json(index_json) or index_json |