Skip to content

Commit

Permalink
insanity
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonSharratt committed Feb 4, 2020
1 parent b0a7005 commit 539da66
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions microservices/requestApi/test/v2/requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ describe("Requests", function() {
var activeRequestId = '';
var firstId = '';
var incorrectId = '';
var v1Id = '';
var fileId = 'test_' + Math.random().toString(36) + '.jpeg';
after(function(done){
db.Request.deleteMany({}, function(err){
Expand Down Expand Up @@ -430,7 +429,7 @@ describe("Requests", function() {

it('it should submit a request', function (done) {
chai.request(server)
.put('/v2/submit/' + firstId)
.put('/v2/submit/' + activeRequestId)
.set("Authorization", "Bearer " + jwt)
.send({})
.end(function (err, res) {
Expand Down

0 comments on commit 539da66

Please sign in to comment.