Skip to content

Commit

Permalink
tweak imports
Browse files Browse the repository at this point in the history
  • Loading branch information
asmello committed Oct 21, 2024
1 parent 98431e7 commit bf9e72d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/assign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -552,10 +552,12 @@ mod toml {
mod tests {
use super::{Assign, AssignError};
use crate::{
index::{OutOfBoundsError, ParseIndexError},
index::{InvalidCharacterError, OutOfBoundsError, ParseIndexError},
Pointer,
};
use alloc::vec;
use core::fmt::{Debug, Display};
use serde_json::json;

#[derive(Debug)]
struct Test<V: Assign> {
Expand Down Expand Up @@ -604,10 +606,6 @@ mod tests {
#[test]
#[cfg(feature = "json")]
fn assign_json() {
use alloc::vec;
use serde_json::json;

use crate::index::InvalidCharacterError;
Test::all([
Test {
ptr: "/foo",
Expand Down

0 comments on commit bf9e72d

Please sign in to comment.