From 32914546e7088b3d9173ae9a2f307effa87917bf Mon Sep 17 00:00:00 2001 From: Daniel Baker Date: Wed, 1 Jan 2025 20:51:09 -0800 Subject: [PATCH] bugfix: fix missing_docs error Changes to Rust 1.83 have manifested an error when running `cargo test`. Since the integration tests had no documentation, opted to use `expect` until crate documentation can be written. --- tests/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib.rs b/tests/lib.rs index e217ea0..00e48dd 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -1,8 +1,8 @@ +#![expect(missing_docs)] // Copyright (c) 2020 Google LLC All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -#![deny(missing_docs)] use { crate::{test_error, Json5Format}, json5format::*,