mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
Merge pull request #2937 from Gared/fix_backend_test_error
Fix check in backend tests
This commit is contained in:
commit
9b1598d50c
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ describe('getText', function(){
|
|||
api.get(endPoint('getText')+"&padID="+testPadId)
|
||||
.expect(function(res){
|
||||
if(res.body.code !== 0) throw new Error("Pad Get Text failed");
|
||||
if(res.body.data.text !== text+"\nhello") throw new Error("Pad Text not set properly");
|
||||
if(res.body.data.text !== text+"hello\n") throw new Error("Pad Text not set properly");
|
||||
})
|
||||
.expect('Content-Type', /json/)
|
||||
.expect(200, done);
|
||||
|
|
Loading…
Reference in a new issue