Skip to content

Commit 5365d44

Browse files
author
Keegan Irby
committed
rename tests
1 parent 4d3b7f6 commit 5365d44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/core/src/test/awsService/cloudWatchLogs/registry/liveTailSession.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('LiveTailSession', async function () {
1010
const testRegion = 'test-region'
1111
const testFilter = 'test-filter'
1212
const testAwsCredentials = {} as any as AWS.Credentials
13-
it('correctly builds StartLiveTailCommand: no stream Filter, no event filter.', function () {
13+
it('builds StartLiveTailCommand: no stream Filter, no event filter.', function () {
1414
const session = new LiveTailSession({
1515
logGroupArn: testLogGroupArn,
1616
region: testRegion,
@@ -28,7 +28,7 @@ describe('LiveTailSession', async function () {
2828
)
2929
)
3030
})
31-
it('correctly builds StartLiveTailCommand: with prefix stream Filter', function () {
31+
it('builds StartLiveTailCommand: with prefix stream Filter', function () {
3232
const session = new LiveTailSession({
3333
logGroupArn: testLogGroupArn,
3434
logStreamFilter: {
@@ -50,7 +50,7 @@ describe('LiveTailSession', async function () {
5050
)
5151
)
5252
})
53-
it('correctly builds StartLiveTailCommand: with specific stream Filter', function () {
53+
it('builds StartLiveTailCommand: with specific stream Filter', function () {
5454
const session = new LiveTailSession({
5555
logGroupArn: testLogGroupArn,
5656
logStreamFilter: {
@@ -72,7 +72,7 @@ describe('LiveTailSession', async function () {
7272
)
7373
)
7474
})
75-
it('correctly builds StartLiveTailCommand: with log event Filter', function () {
75+
it('builds StartLiveTailCommand: with log event Filter', function () {
7676
const session = new LiveTailSession({
7777
logGroupArn: testLogGroupArn,
7878
logStreamFilter: {

0 commit comments

Comments
 (0)