Skip to content

Commit 6b5e8e7

Browse files
committed
fix: test fix
1 parent f0f8858 commit 6b5e8e7

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

test/commands/bundle/bundleInstall.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { PackageBundlesInstall } from '../../../src/commands/package/bundle/inst
2424
const pkgBundleInstallErrorResult: BundleSObjects.PkgBundleVersionInstallReqResult = {
2525
Id: '08c3i000000fylXXXX',
2626
InstallStatus: BundleSObjects.PkgBundleVersionInstallReqStatus.error,
27-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
27+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
2828
DevelopmentOrganization: '00D3i000000TNHXXXX',
2929
ValidationError: 'Installation failed due to validation errors',
3030
CreatedDate: '2022-11-03 09:21',
@@ -38,7 +38,7 @@ const pkgBundleInstallErrorResult: BundleSObjects.PkgBundleVersionInstallReqResu
3838
const pkgBundleInstallSuccessResult: BundleSObjects.PkgBundleVersionInstallReqResult = {
3939
Id: '08c3i000000fylgAAA',
4040
InstallStatus: BundleSObjects.PkgBundleVersionInstallReqStatus.success,
41-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
41+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
4242
DevelopmentOrganization: '00D3i000000TNHYCA4',
4343
ValidationError: '',
4444
CreatedDate: '2022-11-03 09:46',
@@ -49,7 +49,7 @@ const pkgBundleInstallSuccessResult: BundleSObjects.PkgBundleVersionInstallReqRe
4949
const pkgBundleInstallQueuedResult: BundleSObjects.PkgBundleVersionInstallReqResult = {
5050
Id: '08c3i000000fylgBBB',
5151
InstallStatus: BundleSObjects.PkgBundleVersionInstallReqStatus.queued,
52-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
52+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
5353
DevelopmentOrganization: '00D3i000000TNHYCA4',
5454
ValidationError: '',
5555
CreatedDate: '2022-11-03 10:00',
@@ -100,7 +100,7 @@ describe('package:bundle:install - tests', () => {
100100
expect(res).to.deep.equal({
101101
Id: '08c3i000000fylgAAA',
102102
InstallStatus: 'Success',
103-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
103+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
104104
DevelopmentOrganization: '00D3i000000TNHYCA4',
105105
ValidationError: '',
106106
CreatedDate: '2022-11-03 09:46',
@@ -125,7 +125,7 @@ describe('package:bundle:install - tests', () => {
125125
expect(res).to.deep.equal({
126126
Id: '08c3i000000fylgAAA',
127127
InstallStatus: 'Success',
128-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
128+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
129129
DevelopmentOrganization: '00D3i000000TNHYCA4',
130130
ValidationError: '',
131131
CreatedDate: '2022-11-03 09:46',
@@ -151,7 +151,7 @@ describe('package:bundle:install - tests', () => {
151151
expect(res).to.deep.equal({
152152
Id: '08c3i000000fylgAAA',
153153
InstallStatus: 'Success',
154-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
154+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
155155
DevelopmentOrganization: '00D3i000000TNHYCA4',
156156
ValidationError: '',
157157
CreatedDate: '2022-11-03 09:46',
@@ -176,7 +176,7 @@ describe('package:bundle:install - tests', () => {
176176
expect(res).to.deep.equal({
177177
Id: '08c3i000000fylgBBB',
178178
InstallStatus: 'Queued',
179-
PackageBundleVersionID: '1Q83i000000fxw1AAA',
179+
PackageBundleVersionId: '1Q83i000000fxw1AAA',
180180
DevelopmentOrganization: '00D3i000000TNHYCA4',
181181
ValidationError: '',
182182
CreatedDate: '2022-11-03 10:00',

test/commands/bundle/bundleInstallReport.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe('package:bundle:install:report - tests', () => {
4545
const mockResult: BundleSObjects.PkgBundleVersionInstallReqResult = {
4646
Id: requestId,
4747
InstallStatus: BundleSObjects.PkgBundleVersionInstallReqStatus.queued,
48-
PackageBundleVersionID: '0Ho0x0000000000001',
48+
PackageBundleVersionId: '0Ho0x0000000000001',
4949
DevelopmentOrganization: '[email protected]',
5050
ValidationError: '',
5151
CreatedDate: '2025-01-01T00:00:00.000+0000',
@@ -73,7 +73,7 @@ describe('package:bundle:install:report - tests', () => {
7373
const mockResult: BundleSObjects.PkgBundleVersionInstallReqResult = {
7474
Id: requestId,
7575
InstallStatus: BundleSObjects.PkgBundleVersionInstallReqStatus.success,
76-
PackageBundleVersionID: '0Ho0x0000000000001',
76+
PackageBundleVersionId: '0Ho0x0000000000001',
7777
DevelopmentOrganization: '[email protected]',
7878
ValidationError: '',
7979
CreatedDate: '2025-01-01T00:00:00.000+0000',

0 commit comments

Comments
 (0)