File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -219,12 +219,12 @@ export function testEcsServiceWithStorage(ctx: EcsTestContext) {
219219 it ( 'should create ECS service when empty volumes array argument is passed' , async ( ) => {
220220 const ecsService = ctx . outputs . ecsServiceWithEmptyVolumes . value ;
221221 assert . ok ( ecsService , 'ECS Service should be defined' ) ;
222- assert . strictEqual ( ecsService . service . persistentStorage , undefined , 'Service should not have any storage' ) ;
222+ assert . strictEqual ( ecsService . service . persistentStorage , undefined , 'Service should not have persistent storage defined ' ) ;
223223 } ) ;
224224
225225 it ( 'should create ECS service when empty output volumes array argument is passed' , async ( ) => {
226226 const ecsService = ctx . outputs . ecsServiceWithOutputEmptyVolumes . value ;
227227 assert . ok ( ecsService , 'ECS Service should be defined' ) ;
228- assert . strictEqual ( ecsService . service . persistentStorage , undefined , 'Service should not have any storage' ) ;
228+ assert . strictEqual ( ecsService . service . persistentStorage , undefined , 'Service should not have persistent storage defined ' ) ;
229229 } ) ;
230230}
You can’t perform that action at this time.
0 commit comments