Skip to content

Commit

Permalink
lint(request): Move import into tests module
Browse files Browse the repository at this point in the history
  • Loading branch information
V-Wong committed Jan 6, 2025
1 parent 9e16520 commit 5d141de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/http/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{
str::FromStr,
};

use super::{common::CRLF, headers::Headers};
use super::headers::Headers;

#[derive(Debug, Eq, PartialEq)]
pub struct Request {
Expand Down Expand Up @@ -104,6 +104,7 @@ impl FromStr for Method {
mod tests {
use std::collections::HashMap;

use super::super::common::CRLF;
use super::*;

#[test]
Expand Down

0 comments on commit 5d141de

Please sign in to comment.