|
@@ -43,7 +43,7 @@ describe('ProjectCreationAccess', function () {
|
|
|
it('passes if org is part of experiment and member has no access', function () {
|
|
|
const experiment_org = TestStubs.Organization({
|
|
|
access: ['org:read', 'team:read', 'project:read'],
|
|
|
- features: ['organizations:team-project-creation-all'],
|
|
|
+ features: ['team-project-creation-all'],
|
|
|
experiments: [{ProjectCreationForAllExperiment: 1}],
|
|
|
});
|
|
|
|
|
@@ -61,7 +61,7 @@ describe('ProjectCreationAccess', function () {
|
|
|
it('fails if org is not part of experiment and member has no access', function () {
|
|
|
const no_exp_org = TestStubs.Organization({
|
|
|
access: ['org:read', 'team:read', 'project:read'],
|
|
|
- features: ['organizations:team-project-creation-all'],
|
|
|
+ features: ['team-project-creation-all'],
|
|
|
experiments: [{ProjectCreationForAllExperiment: 0}],
|
|
|
});
|
|
|
|