From 11316f041985345dd3a712d14bea749790f937a4 Mon Sep 17 00:00:00 2001
From: Martin Fischer <martin@push-f.com>
Date: Thu, 17 Aug 2023 18:07:32 +0200
Subject: break!: stop abusing Display for Error codes

Display impls should return human-readable strings. After
this commit we're able to introduce a proper Display impl
in the future without that being a breaking change.
---
 integration_tests/tests/test_html5lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'integration_tests')

diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs
index 52df539..da3e983 100644
--- a/integration_tests/tests/test_html5lib.rs
+++ b/integration_tests/tests/test_html5lib.rs
@@ -122,7 +122,7 @@ fn run_test_inner<R: Reader>(
 
         match token {
             Token::Error { error, .. } => actual.errors.push(TestError {
-                code: error.to_string(),
+                code: error.code().to_string(),
             }),
             Token::StartTag(tag) => actual.tokens.push(TestToken::StartTag {
                 name: tag.name,
-- 
cgit v1.2.3