{
  "match": false,
  "comment": "Comma separated headers out of order, order can matter http://tools.ietf.org/html/rfc2616",
  "expected" : {
    "method": "POST",
    "path": "/path",
    "query": "",
    "headers": {
      "Accept": "alligators, hippos"
    }
  },
  "actual": {
    "method": "POST",
    "path": "/path",
    "query": "",
    "headers": {
      "Accept": "hippos, alligators"
    }
  }
}