fix(miette): match `TestError` visibility with `mod tests`

This commit is contained in:
Brooks J Rady 2025-04-26 18:48:43 +01:00
parent 79ee85ef0c
commit cf81969c4f
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ pub(crate) mod tests {
use super::*;
#[derive(Debug)]
pub struct TestError(pub io::Error);
pub(crate) struct TestError(pub io::Error);
impl Display for TestError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {