From 1f46f7a56447b2533d7bb7d894ebaf9146e82007 Mon Sep 17 00:00:00 2001 From: Brad Hanks Date: Wed, 27 Dec 2023 13:45:10 -0700 Subject: [PATCH] pass PR test --- test/plug/conn/utils_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/plug/conn/utils_test.exs b/test/plug/conn/utils_test.exs index d2258cd5..59e28e99 100644 --- a/test/plug/conn/utils_test.exs +++ b/test/plug/conn/utils_test.exs @@ -75,7 +75,7 @@ defmodule Plug.Conn.UtilsTest do end) expected_log_regex = - ~r/\d{2}:\d{2}:\d{2}\.\d{3} \[warning\] invalid UTF-8 on test context, got byte 255 in position #{byte_size(@invalid_utf8) - 1}/i + ~r/\d{2}:\d{2}:\d{2}\.\d{3} \[warn\] invalid UTF-8 on test context, got byte 255 in position #{byte_size(@invalid_utf8) - 1}/i assert String.match?(log, expected_log_regex) end