소스 검색

Fix wrong correct output for test

sbkwgh 8 년 전
부모
커밋
52a69b7191
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/user.js

+ 1 - 1
test/user.js

@@ -35,7 +35,7 @@ describe('User', () => {
 				.end((err, res) => {
 					res.should.have.status(200)
 					res.should.be.json
-					res.body.should.have.property('username', 'test')
+					res.body.should.have.property('username', 'username')
 					res.body.should.have.property('hash')
 					
 					done()