Skip to content

Commit

Permalink
Remove Z variant from BankHolidaysTest AB Test
Browse files Browse the repository at this point in the history
Z is the default and only for users who are in neither A or B bucket.
  • Loading branch information
chao-xian committed Jun 27, 2023
1 parent be7b41d commit 4f4da98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/controllers/concerns/bank_hol_ab_testable.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module BankHolAbTestable
CUSTOM_DIMENSION = 46

ALLOWED_VARIANTS = %w[A B Z].freeze
ALLOWED_VARIANTS = %w[A B].freeze

def self.included(base)
base.helper_method(
Expand All @@ -17,7 +17,6 @@ def bank_hol_ab_test
"BankHolidaysTest",
dimension: CUSTOM_DIMENSION,
allowed_variants: ALLOWED_VARIANTS,
control_variant: "Z",
)
end

Expand Down

0 comments on commit 4f4da98

Please sign in to comment.