Skip to content

Commit

Permalink
bumping the active AT variant to 100% (Automattic#12284)
Browse files Browse the repository at this point in the history
  • Loading branch information
rralian authored Mar 17, 2017
1 parent 93d0753 commit 02dac62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions client/lib/abtest/active-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ module.exports = {
defaultVariation: 'showThree',
allowExistingUsers: true
},
automatedTransfer1: {
automatedTransfer2: {
datestamp: '20170316',
variations: {
enabled: 40,
disabled: 60
enabled: 100,
disabled: 0
},
defaultVariation: 'disabled',
allowExistingUsers: false
Expand Down
2 changes: 1 addition & 1 deletion client/lib/automated-transfer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ export function isATEnabledForCurrentSite() {
// Gate to 40% roll. If we modify this value, we need a new test name
// in active-tests.js
const abtest = require( 'lib/abtest' ).abtest;
return abtest( 'automatedTransfer1' ) === 'enabled';
return abtest( 'automatedTransfer2' ) === 'enabled';
}

0 comments on commit 02dac62

Please sign in to comment.