Using the example above, look how the request is being sent, and how the assertions are making comparisons between the expected and actual values of the response.
## Hint 2
Make sure you are placing a request through `chai.request(server)`.
## Hint 3
You need to use make a .put() request to `/travellers` and use .send() to attach the payload `{surname: 'da Verrazzano'}` to the request.
## Hint 4
Replace the assert.fail() statement with your own tests checking for status, type, body.name, and body.surname in that order. Remember, all of these values are contained in the response `(res`), and you should expect the response to be of type `'application/json'`.
## Hint 5
Check the tests on the challenge page to determine the expected values for `body.name` and `body.surname`.
## Hint 6
Ensure your call to `done()` is inside your callback function for the tests.