Skip to content

Commit 452a212

Browse files
committed
Fix lint
1 parent 29fda6a commit 452a212

File tree

1 file changed

+27
-25
lines changed

1 file changed

+27
-25
lines changed

spec/spec_params.rb

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1939,31 +1939,33 @@ module OptimizelySpec
19391939

19401940
CONFIG_DICT_WITH_INTEGRATIONS_JSON = JSON.dump(CONFIG_DICT_WITH_INTEGRATIONS)
19411941

1942-
CONFIG_BODY_WITH_HOLDOUTS = VALID_CONFIG_BODY.merge({
1943-
'holdouts' => [
1944-
{
1945-
'id' => 'holdout_1',
1946-
'key' => 'global_holdout',
1947-
'status' => 'Running',
1948-
'includedFlags' => [],
1949-
'excludedFlags' => ['553339214']
1950-
},
1951-
{
1952-
'id' => 'holdout_2',
1953-
'key' => 'specific_holdout',
1954-
'status' => 'Running',
1955-
'includedFlags' => ['594089'],
1956-
'excludedFlags' => []
1957-
},
1958-
{
1959-
'id' => 'holdout_3',
1960-
'key' => 'inactive_holdout',
1961-
'status' => 'Inactive',
1962-
'includedFlags' => ['553339214'],
1963-
'excludedFlags' => []
1964-
}
1965-
]
1966-
}).freeze
1942+
CONFIG_BODY_WITH_HOLDOUTS = VALID_CONFIG_BODY.merge(
1943+
{
1944+
'holdouts' => [
1945+
{
1946+
'id' => 'holdout_1',
1947+
'key' => 'global_holdout',
1948+
'status' => 'Running',
1949+
'includedFlags' => [],
1950+
'excludedFlags' => ['553339214']
1951+
},
1952+
{
1953+
'id' => 'holdout_2',
1954+
'key' => 'specific_holdout',
1955+
'status' => 'Running',
1956+
'includedFlags' => ['594089'],
1957+
'excludedFlags' => []
1958+
},
1959+
{
1960+
'id' => 'holdout_3',
1961+
'key' => 'inactive_holdout',
1962+
'status' => 'Inactive',
1963+
'includedFlags' => ['553339214'],
1964+
'excludedFlags' => []
1965+
}
1966+
]
1967+
}
1968+
).freeze
19671969

19681970
CONFIG_BODY_WITH_HOLDOUTS_JSON = JSON.dump(CONFIG_BODY_WITH_HOLDOUTS).freeze
19691971

0 commit comments

Comments
 (0)