diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-21 09:11:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 09:11:44 +0100 |
commit | 338170029c9c8855a6c44de8f3576e8389338652 (patch) | |
tree | 748885ab8e1b2ccba82472dc56ab49ec63739dc0 | |
parent | 649385cc03065d023d74399237331d1ea64f766f (diff) | |
parent | e78a8d6353427bad0055f116e94f471997ee4979 (diff) | |
download | gitlab-338170029c9c8855a6c44de8f3576e8389338652.tar.gz |
Merge pull request #1311 from JohnVillalovos/jlvillal/fix_functional
fix: test_update_group() dependency on ordering
-rw-r--r-- | tools/functional/cli/test_cli_v4.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/functional/cli/test_cli_v4.py b/tools/functional/cli/test_cli_v4.py index 4f78c0c..a63c1b1 100644 --- a/tools/functional/cli/test_cli_v4.py +++ b/tools/functional/cli/test_cli_v4.py @@ -42,7 +42,7 @@ def test_update_group(gitlab_cli, gl, group): assert ret.success - group = gl.groups.list(description=description)[0] + group = gl.groups.get(group.id) assert group.description == description |