fix(ext): update stale HeaderMap references to Http1HeaderMap

HeaderMap was split into the HeaderView interface and Http1HeaderMap
impl in the HTTP/2 model refactor, but two extension-module tests
(flash-ext-jackson, flash-ext-view-jte) still referenced the old
class name, breaking the CI build on master after the HTTP/2 PR merge.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JCmqb7XGb3JQvCWf589yma
This commit is contained in:
Zakaria El Orche
2026-08-14 18:25:42 +00:00
co-authored by Claude Sonnet 5
parent 2078dea54f
commit b5ff5a4c1f
2 changed files with 3 additions and 3 deletions
@@ -148,7 +148,7 @@ class JteExtensionTest {
}
private static Request request(String path, String query, String acceptEncoding, String origin) {
dev.relism.flash.models.HeaderMap headers = new dev.relism.flash.models.HeaderMap();
dev.relism.flash.models.Http1HeaderMap headers = new dev.relism.flash.models.Http1HeaderMap();
String raw = "Host: localhost\r\n";
if (acceptEncoding != null) raw += "Accept-Encoding: " + acceptEncoding + "\r\n";
if (origin != null) raw += "Origin: " + origin + "\r\n";