Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bzp2010 committed Sep 15, 2024
1 parent 2ada8c0 commit eef638b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/backend-api7/e2e/label-selector.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as ADCSDK from '@api7/adc-sdk';
import { create, unset } from 'lodash';
import { readFileSync } from 'node:fs';
import { join } from 'node:path';
import { gte, lt } from 'semver';
import { gte, lt, lte } from 'semver';

import { BackendAPI7 } from '../src';
import {
Expand All @@ -27,7 +27,7 @@ describe('Label Selector', () => {
backend = new BackendAPI7(commonBackendOpts);
});

conditionalDescribe(semverCondition(lt, '3.2.15'))(
conditionalDescribe(!semverCondition(lte, '3.2.15'))(
'Consumer (without credential support)',
() => {
const consumer1Name = 'consumer1';
Expand Down

0 comments on commit eef638b

Please sign in to comment.