From e15dd11d867c7cc6607078e1f1252f1b3d149868 Mon Sep 17 00:00:00 2001 From: dogenkigen Date: Tue, 16 Jul 2024 15:49:26 +0200 Subject: [PATCH] Remove unsused import --- src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.rs b/src/parser.rs index b6d057c..aaa655d 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -19,7 +19,7 @@ use std::str::{FromStr, Lines}; use regex::Regex; use crate::domain::{HttpMethod, Request, Response, RetryPolicy, TestCase}; -use crate::json_diff::path::{JSONPath, Path, JSON_PATH_REGEX}; +use crate::json_diff::path::{JSONPath, Path}; const DOC_ASSERT_REQUEST: &str = "```docassertrequest"; const DOC_ASSERT_RESPONSE: &str = "```docassertresponse";