Skip to content

Commit 3252abe

Browse files
authored
fix: use correct trace log key (detail not message)
1 parent 15303b4 commit 3252abe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_gate_conformance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def test_gate_verdict_logged(self, contaminated_case_1):
154154
trace = self.logger.get_trace()
155155
gate_events = [e for e in trace if e["event"] == "GATE"]
156156
assert len(gate_events) >= 1
157-
assert "DENY" in gate_events[0]["message"]
157+
assert "DENY" in gate_events[0]["detail"]
158158

159159

160160
# ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)