Skip to content

Commit 97ce39f

Browse files
gormedbhstahl
authored andcommitted
removed unused file_id variables
1 parent b1c2eab commit 97ce39f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/Test-EndToEnd.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,6 @@ describe('EndToEnd', () => {
217217
});
218218

219219
describe('FileStore with relativeLocation', () => {
220-
let file_id;
221-
let deferred_file_id;
222220
before(() => {
223221
server = new Server();
224222
server.datastore = new FileStore({
@@ -244,7 +242,7 @@ describe('EndToEnd', () => {
244242
// the location header is relative to the store path
245243
assert.equal(res.headers.location.indexOf(STORE_PATH) > -1, false);
246244
// Save the id for subsequent tests
247-
file_id = res.headers.location.split('/').pop();
245+
res.headers.location.split('/').pop();
248246
done();
249247
});
250248
});

0 commit comments

Comments
 (0)