diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f383571..09f05e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ * Refactor base_parser_v1 callback traits: * Refine Parser concept * Relax ForwardIterator requirements in FieldSequence +* Fix websocket failure testing +* Refine Writer concept and fix exemplar in documentation API Changes: diff --git a/test/websocket/stream.cpp b/test/websocket/stream.cpp index 44184b10..57e39d79 100644 --- a/test/websocket/stream.cpp +++ b/test/websocket/stream.cpp @@ -802,7 +802,7 @@ public: using boost::asio::buffer; static std::size_t constexpr limit = 200; std::size_t n; - for(n = 199; n < limit; ++n) + for(n = 0; n < limit; ++n) { stream> ws(n, ios_); auto const restart = @@ -1035,7 +1035,7 @@ public: using boost::asio::buffer; static std::size_t constexpr limit = 200; std::size_t n; - for(n = 190; n < limit; ++n) + for(n = 0; n < limit; ++n) { stream> ws(n, ios_); auto const restart =