Skip to content

Commit

Permalink
test: make error checking case insensitive fixing rbac test (#7749)
Browse files Browse the repository at this point in the history
(cherry picked from commit 046e060)
  • Loading branch information
NicholasBlaskey authored and determined-ci committed Aug 29, 2023
1 parent 79a5faa commit 16509f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e_tests/tests/cluster/test_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def det_cmd_json(cmd: List[str]) -> Any:
def det_cmd_expect_error(cmd: List[str], expected: str) -> None:
res = det_cmd(cmd)
assert res.returncode != 0
assert expected in res.stderr.decode()
assert expected.lower() in res.stderr.decode().lower()


@pytest.mark.e2e_cpu_rbac
Expand Down

0 comments on commit 16509f6

Please sign in to comment.