Skip to content

Commit

Permalink
update unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Oct 27, 2024
1 parent eeac7fd commit 083ec3a
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,6 @@ describe('create model customization job', () => {
vpcConfig: {
securityGroups: Array(6).fill(new ec2.SecurityGroup(stack, 'SecurityGroup', { vpc })),
subnets: vpc.privateSubnets,
vpc,
},
})).toThrow('securityGroups must be between 1 and 5 items long, got: 6');
});
Expand Down Expand Up @@ -918,7 +917,6 @@ describe('create model customization job', () => {
vpcConfig: {
securityGroups: [new ec2.SecurityGroup(stack, 'SecurityGroup', { vpc })],
subnets: Array(17).fill(vpc.privateSubnets[0]),
vpc,
},
})).toThrow('subnets must be between 1 and 16 items long, got: 17');
});
Expand Down

0 comments on commit 083ec3a

Please sign in to comment.