diff --git a/test/integration/targets/group_by/test_group_by.yml b/test/integration/targets/group_by/test_group_by.yml index 87d1809e8d..3c299aa728 100644 --- a/test/integration/targets/group_by/test_group_by.yml +++ b/test/integration/targets/group_by/test_group_by.yml @@ -25,10 +25,10 @@ group_by: key={{ genus }} - name: group by first three letters of genus with key in quotes - group_by: key="{{ genus | truncate(3, true, '') }}" + group_by: key="{{ genus[:3] }}" - name: group by first two letters of genus with key not in quotes - group_by: key={{ genus | truncate(2, true, '') }} + group_by: key={{ genus[:2] }} - name: group by genus in uppercase using complex args group_by: { key: "{{ genus | upper() }}" } diff --git a/test/runner/requirements/constraints.txt b/test/runner/requirements/constraints.txt index bafc23867f..ec8e8a069b 100644 --- a/test/runner/requirements/constraints.txt +++ b/test/runner/requirements/constraints.txt @@ -1,3 +1,2 @@ coverage >= 4.2 -jinja2 < 2.9 # 2.9 introduces changes which break tests pywinrm >= 0.2.1 # 0.1.1 required, but 0.2.1 provides better performance