异常失败 Gavel/Dredd 测试

Unexcepted failed Gavel/Dredd test

谁能帮我弄清楚为什么这个 Dredd 测试失败了?我觉得不错:

fail: GET /device/2/battery duration: 260ms
fail: body: Real and expected data does not match.

request: 
body: 

headers: 
    User-Agent: Dredd/0.6.0 (Darwin 14.3.0; x64)

uri: /device/2/battery
method: GET


expected: 
headers: 
    connection: Keep-Alive
    content-length: 18
    content-type: text/plain

body: 
BATTERY REQ QUEUED

statusCode: 200


actual: 
statusCode: 200
headers: 
    connection: Keep-Alive
    content-length: 18
    content-type: text/plain
    date: Tue, 09 Jun 2015 19:01:59 GMT

body: 
BATTERY REQ QUEUED

这些可疑错误通常是由预期或真实主体中的尾随换行符引起的。尝试使用 CLI API Blueprint parser 解析您的蓝图,看看 Dredd 到底期望什么。

a hint for a workaround for this in the documentation.