Loading
fix(local): 041_03 request ld+json so @context isn't folded into the Link header
The page= -> offset= flip was already applied, but 041_03_01/02 still failed on a different cause: the query was sent without an Accept header (-> the response is application/json), so the broker correctly carries the @context as an extra value in the Link header alongside prev/next (several Link values fold into one comma-separated header per RFC 8288 § 3). Check Pagination Prev And Next Headers (AssertionUtils.resource) compares the WHOLE Link header against just prev/next, so the @context value broke it (3 != 2 / whole-header mismatch). Pass accept=ld+json so the @context goes in the body and the Link header is pure pagination, matching the sibling tests 031_02 / 037_11. Broker behaviour is correct; this is a test-side fix. See forge issue #114.