<?xml version="1.0" encoding="utf-8"?><testsuites name="pytest tests"><testsuite name="pytest" errors="0" failures="1" skipped="0" tests="1" time="0.091" timestamp="2026-08-16T22:48:02.602339+09:00" hostname="cube-B850M-AORUS-ELITE-WIFI6E-ICE"><testcase classname="tests.gateway.test_runtime_footer" name="test_format_footer_skips_missing_context_length" time="0.010"><failure message="AssertionError: assert '/tmp/wd' in 'gpt-5.4 · ~/wd'">def test_format_footer_skips_missing_context_length():
        out = format_runtime_footer(
            model="openai/gpt-5.4",
            context_tokens=500,
            context_length=None,
            cwd="/tmp/wd",
            fields=("model", "context_pct", "cwd"),
        )
        # context_pct dropped silently; no "?%" artifact
        assert "%" not in out
        assert "gpt-5.4" in out
&gt;       assert "/tmp/wd" in out
E       AssertionError: assert '/tmp/wd' in 'gpt-5.4 · ~/wd'

tests/gateway/test_runtime_footer.py:84: AssertionError</failure></testcase></testsuite></testsuites>