Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
domenukk committed Nov 23, 2023
1 parent 96e2a04 commit 268c17e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion url/tests/unit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use alloc::string::{String, ToString};
use alloc::vec::Vec;
use core::cell::{Cell, RefCell};
#[cfg(feature = "std")]
use std::path::{Path, PathBuf};
use std::{dbg, path::{Path, PathBuf}};
use url::{form_urlencoded, Host, Origin, Url};

/// `std` version of `net`
Expand Down Expand Up @@ -1364,6 +1364,7 @@ fn test_file_with_drive_and_path() {
assert_eq!(url2.to_string(), "file:///p:/a");
}

#[cfg(feature = "std")]
#[test]
fn issue_864() {
let mut url = url::Url::parse("file://").unwrap();
Expand Down

0 comments on commit 268c17e

Please sign in to comment.