mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Hmf for some reason settings_list return a string for ints..
This commit is contained in:
parent
e8963d3473
commit
1202d11fd5
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ def test_settings_set_bad_value_select():
|
|||
|
||||
def test_settings_list_modified():
|
||||
settings_set("example.example.number", 21)
|
||||
assert settings_list()["example.example.number"]["value"] == 21
|
||||
assert int(settings_list()["example.example.number"]["value"]) == 21
|
||||
|
||||
|
||||
def test_reset():
|
||||
|
|
Loading…
Add table
Reference in a new issue