diff options
Diffstat (limited to 'integration_tests')
-rw-r--r-- | integration_tests/Cargo.toml | 2 | ||||
-rw-r--r-- | integration_tests/tests/test_html5lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index cc27798..2123c75 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -18,4 +18,4 @@ edition = "2021" glob = "0.3.1" html5lib_tests = { path = "../html5lib_tests" } html5tokenizer = { path = "..", features = ["integration-tests"] } -pretty_assertions = "1.0.0" +similar-asserts = { workspace = true } diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index da3e983..7511f11 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -4,7 +4,7 @@ use html5lib_tests::{ parse_tests, Error as TestError, InitialState, Output, Test, Token as TestToken, }; use html5tokenizer::{reader::Reader, DefaultEmitter, InternalState, Token, Tokenizer}; -use pretty_assertions::assert_eq; +use similar_asserts::assert_eq; /// Path to a local checkout of [html5lib-tests], relative to the /// directory containing the `Cargo.toml` file of the current crate. |