Skip to content

Commit 2c16339

Browse files
committed
remove commented lines
1 parent 4e4a6d9 commit 2c16339

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

roles/common/tasks/manifest_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: "Check manifest {{ manifest.name }}"
33
vars:
44
expected_count: "{{ manifest.expected_number | default(1) | int }}"
5-
actual_count: "{{ available_manifests | select('search', '^'+manifest.name ) | length }}"
5+
actual_count: "{{ available_manifests | select('search', '^' + manifest.name) | length }}"
66
block:
77
- name: |
88
TEST Get {{ manifest.name }} {{ expected_count }} packagemanifest

roles/telemetry_chargeback/tasks/loki_rate.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
- name: "Get rating summary help 2"
33
ansible.builtin.command:
4-
cmd: "{{ openstack_cmd }} --rating-api-version 2 rating summary get -h"
4+
#cmd: "{{ openstack_cmd }} --rating-api-version 2 rating summary get -h"
5+
cmd: "{{ openstack_cmd }} rating summary get -h"
56
register: get_help2
67
changed_when: false
78

@@ -11,7 +12,7 @@
1112

1213
- name: "TEST Get Rate and Qty by type from CloudKitty {{ item }}"
1314
ansible.builtin.command:
14-
cmd: "{{ openstack_cmd }} --rating-api-version 2 rating summary get -g type"
15+
cmd: "{{ openstack_cmd }} rating summary get -g type"
1516
register: cost_totals_by_type
1617
changed_when: true
1718
failed_when: cost_totals_by_type.rc != 0
@@ -29,7 +30,7 @@
2930

3031
- name: "TEST Get Rate and Qty Summary from CloudKitty {{ item }}"
3132
ansible.builtin.command:
32-
cmd: "{{ openstack_cmd }} --rating-api-version 2 rating summary get"
33+
cmd: "{{ openstack_cmd }} rating summary get"
3334
register: cost_totals_summary
3435
changed_when: true
3536
failed_when: cost_totals_summary.rc != 0

0 commit comments

Comments
 (0)