Merge pull request #251 from mochi/otp-25

Add OTP 25 to test matrix
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 46fc870..ced0e12 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,6 +15,7 @@
         os:
           - ubuntu-latest
         otp:
+          - "25.1.1"
           - "24.3.4.0"
           - "23.3.4.14"
           - "22.3.4.26"
diff --git a/CHANGES.md b/CHANGES.md
index bb76d79..1d6e609 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,8 @@
+Version 3.1.1 released 2022-XX-XX
+
+* Fix for chunk length parsing edge case
+  https://github.com/mochi/mochiweb/pull/249
+
 Version 3.1.0 released 2022-08-13
 
 * Leading and trailing whitespace in header values are now trimmed
diff --git a/README.md b/README.md
index f827f88..d2f540c 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
 
 Information about Rebar (Erlang build tool) is available at https://github.com/erlang/rebar3
 
-MochiWeb is currently tested with Erlang/OTP 18.3 through 24.0,
+MochiWeb is currently tested with Erlang/OTP 18.3 through 25.1.1,
 versions older than 3.0.0 may still be compatible back to R15B-03.
 
 # OTP 21.2, 21.2.1, 21.2.2 warning
diff --git a/src/mochiweb_request.erl b/src/mochiweb_request.erl
index dc32ce6..bbb613a 100644
--- a/src/mochiweb_request.erl
+++ b/src/mochiweb_request.erl
@@ -1140,12 +1140,3 @@
       undefined -> "*/*";
       Value -> Value
     end.
-
-%%
-%% Tests
-%%
--ifdef(TEST).
-
--include_lib("eunit/include/eunit.hrl").
-
--endif.