Skip to content

Commit f93175a

Browse files
committed
Fix list objects.
1 parent 531a979 commit f93175a

File tree

1 file changed

+14
-14
lines changed
  • tests/integration/targets/timeperiod/vars

1 file changed

+14
-14
lines changed

tests/integration/targets/timeperiod/vars/main.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ checkmk_var_test_sites:
2424
checkmk_var_timeperiods_create:
2525
- name: "lunchtime"
2626
alias: "Lunchtime"
27-
active_time_ranges: '[{"day": "all", "time_ranges": [{"start": "12:00:00", "end": "13:00:00"}]}]'
27+
active_time_ranges: [{"day": "all", "time_ranges": [{"start": "12:00:00", "end": "13:00:00"}]}]
2828
- name: "worktime"
2929
alias: "Worktime"
30-
active_time_ranges: '[{"day": "all", "time_ranges": [{"start": "09:00:00", "end": "17:00:00"}]}]'
31-
exceptions: '[{"date": "2023-12-24", "time_ranges": [{"start": "10:00:00", "end": "12:00:00"}]}]'
32-
exclude: '[ "lunchtime" ]'
30+
active_time_ranges: [{"day": "all", "time_ranges": [{"start": "09:00:00", "end": "17:00:00"}]}]
31+
exceptions: [{"date": "2023-12-24", "time_ranges": [{"start": "10:00:00", "end": "12:00:00"}]}]
32+
exclude: [ "lunchtime" ]
3333
- name: "notonfriday"
3434
alias: "Notonfriday"
35-
active_time_ranges: '[{"day": "friday", "time_ranges": [{"start": "13:00:00", "end": "23:59:59"}]}]'
35+
active_time_ranges: [{"day": "friday", "time_ranges": [{"start": "13:00:00", "end": "23:59:59"}]}]
3636
- name: "fridaybreak"
3737
alias: "fridaybreak"
38-
active_time_ranges: '[{"day": "friday", "time_ranges": [{"start": "14:00", "end": "15:00"}]}]'
39-
exceptions: '[{"date": "2023-12-24", "time_ranges": [{"start": "10:00", "end": "11:00"}]}]'
38+
active_time_ranges: [{"day": "friday", "time_ranges": [{"start": "14:00", "end": "15:00"}]}]
39+
exceptions: [{"date": "2023-12-24", "time_ranges": [{"start": "10:00", "end": "11:00"}]}]
4040
- name: "nonsense"
4141
alias: "nonsense"
4242
active_time_ranges: [{'day': 'all', 'time_ranges': [{'start': '09:00:00', 'end': '17:00:00'}, {'start': '20:00:00', 'end': '22:00:00'}, {'start': '7:00', 'end': '08:00'}]},
@@ -47,19 +47,19 @@ checkmk_var_timeperiods_create:
4747

4848
checkmk_var_timeperiods_update:
4949
- name: "worktime"
50-
active_time_ranges: '[{"day": "all", "time_ranges": [{"start": "08:00:00", "end": "17:00:00"}]}]'
51-
exceptions: '[{"date": "2023-12-24", "time_ranges": [{"start": "10:00:00", "end": "12:00:00"}]}]'
52-
exclude: '[ "notonfriday" ]'
50+
active_time_ranges: [{"day": "all", "time_ranges": [{"start": "08:00:00", "end": "17:00:00"}]}]
51+
exceptions: [{"date": "2023-12-24", "time_ranges": [{"start": "10:00:00", "end": "12:00:00"}]}]
52+
exclude: [ "notonfriday" ]
5353
- name: "notonfriday"
54-
active_time_ranges: '[{"day": "friday", "time_ranges": [{"start": "00:00:00", "end": "23:59:59"}]}]'
54+
active_time_ranges: [{"day": "friday", "time_ranges": [{"start": "00:00:00", "end": "23:59:59"}]}]
5555
- name: "worktime"
56-
exclude: '[ "lunchtime" ]'
56+
exclude: [ "lunchtime" ]
5757

5858
checkmk_var_timeperiods_noupdate:
5959
- name: "fridaybreak"
6060
alias: "fridaybreak"
61-
active_time_ranges: '[{"day": "friday", "time_ranges": [{"start": "14:00", "end": "15:00"}]}]'
62-
exceptions: '[{"date": "2023-12-24", "time_ranges": [{"start": "10:00", "end": "11:00"}]}]'
61+
active_time_ranges: [{"day": "friday", "time_ranges": [{"start": "14:00", "end": "15:00"}]}]
62+
exceptions: [{"date": "2023-12-24", "time_ranges": [{"start": "10:00", "end": "11:00"}]}]
6363
- name: "nonsense"
6464
alias: "nonsense"
6565
active_time_ranges: [{'day': 'all', 'time_ranges': [{'start': '20:00:00', 'end': '22:00:00'}, {'start': '09:00:00', 'end': '17:00:00'}, {'start': '7:00', 'end': '08:00'}]},

0 commit comments

Comments
 (0)