Skip to content

Commit

Permalink
fix: get rid of unnecessary subtest
Browse files Browse the repository at this point in the history
  • Loading branch information
amychisholm03 committed Aug 27, 2024
1 parent b14da53 commit 09cee08
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/unit/db/query-parsers/sql.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,7 @@ test('database query parser', async (t) => {
t.todo('should parse subquery collections as ' + cat.table)
} else if (/\w+\.\w+/.test(ps.collection)) {
t.todo('should strip database names from collection names as ' + cat.table)
} else {
await t.test('should parse the collection as ' + cat.table, function () {
assert.equal(ps.collection, cat.table, `should parse the collection as ${cat.table}`)
})
}
}

Check failure on line 159 in test/unit/db/query-parsers/sql.test.js

View workflow job for this annotation

GitHub Actions / lint (lts/*)

Delete `·`
})
}
})
Expand Down

0 comments on commit 09cee08

Please sign in to comment.