Skip to content

Commit

Permalink
Update fake-xhr-and-server.md
Browse files Browse the repository at this point in the history
before: assert(server.requests.length > 0) . 
now: assert(this.server.requests.length > 0)
  • Loading branch information
escapedcat authored and fatso83 committed Jul 20, 2017
1 parent 259a330 commit c9a35ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_releases/v2.3.8/fake-xhr-and-server.md
Expand Up @@ -219,7 +219,7 @@ High-level API to manipulate `FakeXMLHttpRequest` instances.

sinon.assert.calledWith(callback, [{ id: 12, comment: "Hey there" }]);

assert(server.requests.length > 0)
assert(this.server.requests.length > 0)
}
}
```
Expand Down

0 comments on commit c9a35ef

Please sign in to comment.