Skip to content

Commit 475d55a

Browse files
committed
Remove irrelevant identifiers
1 parent 1995281 commit 475d55a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/woqlSlice.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ const WOQL = require('../lib/woql');
99
const WOQL_SLICE_JSON = require('./woqlJson/woqlSliceJson');
1010

1111
describe('WOQL slice operator', () => {
12-
describe('AC-1: Basic slicing', () => {
12+
describe('Basic slicing', () => {
1313
it('generates correct JSON for slice with start and end', () => {
1414
const woqlObject = WOQL.slice(['a', 'b', 'c', 'd'], 'v:Result', 1, 3);
1515
expect(woqlObject.json()).to.eql(WOQL_SLICE_JSON.basicSlice);
1616
});
1717
});
1818

19-
describe('AC-3: Negative indices', () => {
19+
describe('Negative indices', () => {
2020
it('generates correct JSON for slice with negative indices', () => {
2121
const woqlObject = WOQL.slice(['a', 'b', 'c', 'd'], 'v:Result', -2, -1);
2222
expect(woqlObject.json()).to.eql(WOQL_SLICE_JSON.negativeIndices);
@@ -42,7 +42,7 @@ describe('WOQL slice operator', () => {
4242
});
4343
});
4444

45-
describe('AC-7: Full range', () => {
45+
describe('Full range', () => {
4646
it('generates correct JSON for slice from start', () => {
4747
const woqlObject = WOQL.slice(['a', 'b', 'c'], 'v:Result', 0, 2);
4848
expect(woqlObject.json()).to.eql(WOQL_SLICE_JSON.fromStart);

0 commit comments

Comments
 (0)