Skip to content

Commit c446e69

Browse files
committed
Fix lint issue
1 parent 1712fc7 commit c446e69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/decision_service_holdout_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@
737737
test_user_id = 'test_user'
738738
user_attributes = {'country' => 'us'}
739739

740-
user_context = optimizely_with_mocked_events.create_user_context(test_user_id, user_attributes)
740+
_user_context = optimizely_with_mocked_events.create_user_context(test_user_id, user_attributes)
741741

742742
expect(captured_notifications.length).to eq(1), 'Should have captured exactly one decision notification'
743743

@@ -758,7 +758,7 @@
758758

759759
experiment_id = notification[:experiment_id]
760760
expect(experiment_id).to eq(holdout['id']), 'ExperimentId in notification should match holdout ID'
761-
761+
762762
variation_id = notification[:variation_id]
763763
expect(variation_id).to eq(holdout_variation['id']), 'VariationId should match holdout variation ID'
764764

0 commit comments

Comments
 (0)