diff --git a/test/integration_tests/python/test_groups.py b/test/integration_tests/python/test_groups.py index 7d973740fd92b02a9bc16e1b5254974c4602e4b5..77276a98e3486e753bb56649828b629f73efcd02 100644 --- a/test/integration_tests/python/test_groups.py +++ b/test/integration_tests/python/test_groups.py @@ -16,6 +16,10 @@ def test_groups(as_admin, data_builder): group_name = 'New group name' r = as_admin.put('/groups/' + group, json={'name': group_name}) assert r.ok + + # Get the group again to compare timestamps + r = as_admin.get('/groups/' + group) + assert r.ok second_modified = r.json()['modified'] d1 = parse(first_modified) d2 = parse(second_modified)