We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c2eab commit 97ce39fCopy full SHA for 97ce39f
test/Test-EndToEnd.js
@@ -217,8 +217,6 @@ describe('EndToEnd', () => {
217
});
218
219
describe('FileStore with relativeLocation', () => {
220
- let file_id;
221
- let deferred_file_id;
222
before(() => {
223
server = new Server();
224
server.datastore = new FileStore({
@@ -244,7 +242,7 @@ describe('EndToEnd', () => {
244
242
// the location header is relative to the store path
245
243
assert.equal(res.headers.location.indexOf(STORE_PATH) > -1, false);
246
// Save the id for subsequent tests
247
- file_id = res.headers.location.split('/').pop();
+ res.headers.location.split('/').pop();
248
done();
249
250
0 commit comments