Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bzp2010 committed Sep 15, 2024
1 parent c53c6bf commit 621e1cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/backend-api7/e2e/label-selector.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('Label Selector', () => {
createEvent(ADCSDK.ResourceType.CONSUMER, consumer2Name, consumer2),
]));

it('Dump consumer whit label team = 1', async () => {
it('Dump consumer with label team = 1', async () => {
const backend = new BackendAPI7({
...commonBackendOpts,
labelSelector: { team: '1' }, // add custom label selector
Expand All @@ -69,7 +69,7 @@ describe('Label Selector', () => {
expect(result.consumers[0]).toMatchObject(consumer1);
});

it('Dump consumer whit label team = 2', async () => {
it('Dump consumer with label team = 2', async () => {
const backend = new BackendAPI7({
...commonBackendOpts,
labelSelector: { team: '2' }, // add custom label selector
Expand Down Expand Up @@ -137,7 +137,7 @@ describe('Label Selector', () => {
),
]));

it('Dump consumer whit label team = 1', async () => {
it('Dump consumer with label team = 1', async () => {
const backend = new BackendAPI7({
...commonBackendOpts,
labelSelector: { team: '1' }, // add custom label selector
Expand All @@ -150,7 +150,7 @@ describe('Label Selector', () => {
expect(result.consumers[0].credentials).toHaveLength(2);
});

it('Dump consumer whit label team = 2', async () => {
it('Dump consumer with label team = 2', async () => {
const backend = new BackendAPI7({
...commonBackendOpts,
labelSelector: { team: '2' }, // add custom label selector
Expand Down Expand Up @@ -219,7 +219,7 @@ describe('Label Selector', () => {
createEvent(ADCSDK.ResourceType.SSL, sslName(ssl2SNIs), ssl2),
]));

it('Dump consumer whit label team = 1', async () => {
it('Dump consumer with label team = 1', async () => {
const backend = new BackendAPI7({
...commonBackendOpts,
labelSelector: { team: '1' }, // add custom label selector
Expand All @@ -229,7 +229,7 @@ describe('Label Selector', () => {
expect(result.ssls[0]).toMatchObject(ssl1test);
});

it('Dump consumer whit label team = 2', async () => {
it('Dump consumer with label team = 2', async () => {
const backend = new BackendAPI7({
...commonBackendOpts,
labelSelector: { team: '2' }, // add custom label selector
Expand Down

0 comments on commit 621e1cc

Please sign in to comment.