Skip to content

Commit caabfb2

Browse files
committed
Eslint el oh el
1 parent 8c2f3ca commit caabfb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/12-simple-queries.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Cursor from '../src/cursor'
66
const range = (n) => Array.from(Array(n).keys())
77
const alpha = (i) => String.fromCharCode('a'.charCodeAt(0) + i)
88
const ARANGO_VERSION = Number(process.env.ARANGO_VERSION || 30000)
9-
const describe_2x = ARANGO_VERSION < 30000 ? describe : describe.skip
9+
const describe2x = ARANGO_VERSION < 30000 ? describe : describe.skip
1010

1111
describe('Simple queries', () => {
1212
let name = `testdb_${Date.now()}`
@@ -83,7 +83,7 @@ describe('Simple queries', () => {
8383
.catch(done)
8484
})
8585
})
86-
describe_2x('collection.first', () => {
86+
describe2x('collection.first', () => {
8787
it('returns the first document in the collection', (done) => {
8888
collection.first()
8989
.then((doc) => {
@@ -97,7 +97,7 @@ describe('Simple queries', () => {
9797
.catch(done)
9898
})
9999
})
100-
describe_2x('collection.last', () => {
100+
describe2x('collection.last', () => {
101101
it('returns the last document in the collection', (done) => {
102102
collection.last()
103103
.then((doc) => {

0 commit comments

Comments
 (0)