Skip to content

Commit

Permalink
chore: change test region to z0
Browse files Browse the repository at this point in the history
  • Loading branch information
lihsai0 committed May 8, 2024
1 parent ec46e52 commit d7be4cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/region.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ describe('Region', () => {
appName: 'fakeAppName',
appVersion: 'fakeAppVersion',
});
expect(region.id).to.equal('na0');
expect(region.s3Id).to.equal('us-north-1');
expect(region.id).to.equal('z0');
expect(region.s3Id).to.equal('cn-east-1');
expect(region.s3Urls).to.eql(['https://s3.us-north-1.qiniucs.com/']);
});

Expand All @@ -34,8 +34,8 @@ describe('Region', () => {
appName: 'fakeAppName',
appVersion: 'fakeAppVersion',
});
expect(region.id).to.equal('na0');
expect(region.s3Id).to.equal('us-north-1');
expect(region.id).to.equal('z0');
expect(region.s3Id).to.equal('cn-east-1');
expect(region.s3Urls).to.eql(['http://s3.us-north-1.qiniucs.com/']);
});
});
Expand Down

0 comments on commit d7be4cf

Please sign in to comment.