Skip to content

Commit

Permalink
Fix comma-spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
bananaappletw committed Oct 20, 2016
1 parent e0b8ca1 commit 1682675
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blog/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var app = require('./app');
var request = require('supertest').agent(app.listen());

describe('Blog', function(){
describe('GET /',function(){
describe('GET /', function(){
it('should see title "Posts"', function(done){
request
.get('/')
Expand All @@ -26,7 +26,7 @@ describe('Blog', function(){
});
});
});
describe('POST /post/new',function(){
describe('POST /post/new', function(){
it('should create post and redirect to /', function(done){
request
.post('/post')
Expand All @@ -39,7 +39,7 @@ describe('Blog', function(){
});
});
});
describe('GET /post/0',function(){
describe('GET /post/0', function(){
it('should see post', function(done){
request
.get('/post/0')
Expand Down

0 comments on commit 1682675

Please sign in to comment.