Skip to content

Commit e8ecdb8

Browse files
committed
fix: correct property name from containerPooling to disablePool in tests
- Update tests/error-handling-simple.test.ts to use disablePool: true - Update tests/error-handling.test.ts to use disablePool: true - Update tests/error-handling-fixed.test.ts to use disablePool: true The property name now matches the IStartOptions interface definition which defines disablePool?: boolean, not containerPooling.
1 parent 5bf6cd5 commit e8ecdb8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/error-handling-fixed.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const ZEMU_OPTIONS_S: IStartOptions = {
1313
X11: false,
1414
custom: '',
1515
model: 'nanos',
16-
containerPooling: false, // Disable pooling for this test
16+
disablePool: true, // Disable pooling for this test
1717
}
1818

1919
describe('Error Handling - Fixed', () => {

tests/error-handling-simple.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const ZEMU_OPTIONS_S: IStartOptions = {
1212
X11: false,
1313
custom: '',
1414
model: 'nanos',
15-
containerPooling: false, // Disable pooling for this test
15+
disablePool: true, // Disable pooling for this test
1616
}
1717

1818
describe('Error Handling - Simple', () => {

tests/error-handling.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const ZEMU_OPTIONS_S: IStartOptions = {
1212
X11: false,
1313
custom: '',
1414
model: 'nanos',
15-
containerPooling: false, // Disable pooling for this test
15+
disablePool: true, // Disable pooling for this test
1616
}
1717

1818
describe('Error Handling', () => {

0 commit comments

Comments
 (0)