Skip to content

Commit 0a9a407

Browse files
committed
Update test assertions
1 parent 12f699a commit 0a9a407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ecs-service/persistent-storage.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)