Skip to content

Commit b3f9d75

Browse files
committed
Fix lint
1 parent 7bffcf1 commit b3f9d75

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/config/datafile_project_config_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,7 +1624,7 @@
16241624
holdout = config_with_holdouts.holdouts.first
16251625

16261626
if holdout
1627-
expect(holdout['status']).to be_in(['Running', 'Inactive'])
1627+
expect(holdout['status']).to be_in(%w[Running Inactive])
16281628
expect(holdout).to have_key('audiences')
16291629
end
16301630
end
@@ -1679,7 +1679,7 @@
16791679

16801680
# These holdouts should match all users
16811681
holdouts_with_empty_audiences.each do |holdout|
1682-
expect(holdout['status']).to be_in(['Running', 'Inactive'])
1682+
expect(holdout['status']).to be_in(%w[Running Inactive])
16831683
end
16841684
end
16851685
end

0 commit comments

Comments
 (0)