fix: remove TODO via update of assert_tv

Before the fix from https://github.com/aminfa/assert_tv/issues/1,
`assert_tv` wouldn't pass through `#[cfg_attr(miri, ignore)]`. Now that
it is fixed, this works, thus we have one less miri test case failing.

Signed-off-by: wucke13 <wucke13+github@gmail.com>
This commit is contained in:
wucke13
2025-09-02 09:57:05 +02:00
committed by Karolin Varner
parent 49be83847b
commit 55ab57a1d0
2 changed files with 6 additions and 6 deletions

View File

@@ -82,7 +82,7 @@ struct CryptoServerTestValues {
}
#[test_vec_case(format = "toml")]
// TODO find a way to make miri ignore these test cases
#[cfg_attr(miri, ignore)] // unsupported operation: can't call foreign function `ZSTD_DStreamInSize` on OS `linux`
fn crypto_server_test_vector_1() -> anyhow::Result<()> {
type TV = TestVectorActive;
let test_values: TestCaseValues = TV::initialize_values();