Redirect get http 301 instead of 303

This commit is contained in:
jannyHou 2016-06-22 11:49:29 -04:00
parent 5eece0b3ae
commit 96c454226a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});