Merge pull request #168 from strongloop/fix/redirect-get-http301
Redirect get http 301 instead of 303
This commit is contained in:
commit
de81a48cfc
|
@ -24,7 +24,7 @@ describe('explorer', function() {
|
|||
it('should redirect to /explorer/', function(done) {
|
||||
request(this.app)
|
||||
.get('/explorer')
|
||||
.expect(303)
|
||||
.expect(301)
|
||||
.end(done);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue