Skip to content

Commit 69965a2

Browse files
committed
review comment fixes
1 parent e5f0e79 commit 69965a2

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

test/fixtures/wallet/wallet.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
* @return {Object}
66
*/
77

8-
const currencies = [
9-
'neelam',
10-
'dinero'
11-
]
12-
138
const walletKeys = [
149
'id',
1510
'data'
@@ -26,4 +21,4 @@ const walletDataKeys = [
2621
'currencies'
2722
]
2823

29-
module.exports = { currencies, walletBodyKeys, walletKeys, walletDataKeys }
24+
module.exports = { walletBodyKeys, walletKeys, walletDataKeys }

test/integration/wallet.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ describe('Wallet', function () {
3636
await cleanDb()
3737
})
3838

39-
describe('Check /wallet', function () {
40-
it('Should return wallet information', function (done) {
39+
describe('GET /wallet', function () {
40+
it('Should return wallet information of the logged in user', function (done) {
4141
chai
4242
.request(app)
4343
.get('/wallet')

0 commit comments

Comments
 (0)