aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/tests/fetch.rs
diff options
context:
space:
mode:
authorbors-servo <infra@servo.org>2023-06-26 17:35:30 +0200
committerGitHub <noreply@github.com>2023-06-26 17:35:30 +0200
commit725f95e69a9df51540190650c749fef2bc7bb268 (patch)
tree9c93415c5436d3689355184396bcd711e11978e8 /components/net/tests/fetch.rs
parentcc4650aeb3085d20e51750a6d7b6abd99e687a83 (diff)
parent78464eeabcc0644a979d92882c3a170a698f18b1 (diff)
downloadservo-725f95e69a9df51540190650c749fef2bc7bb268.tar.gz
servo-725f95e69a9df51540190650c749fef2bc7bb268.zip
Auto merge of #29931 - mrobinson:update-uuid, r=jdm
Update uuid This is required to use the new version of gleam and update ipc-channels without duplicating the dependency in the future. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] There are tests for these changes <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/net/tests/fetch.rs')
-rw-r--r--components/net/tests/fetch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/tests/fetch.rs b/components/net/tests/fetch.rs
index 4c0149b8f1a..3b0f18f1950 100644
--- a/components/net/tests/fetch.rs
+++ b/components/net/tests/fetch.rs
@@ -198,7 +198,7 @@ fn test_fetch_blob() {
true,
"http://www.example.org".into(),
);
- let url = ServoUrl::parse(&format!("blob:{}{}", origin.as_str(), id.to_simple())).unwrap();
+ let url = ServoUrl::parse(&format!("blob:{}{}", origin.as_str(), id.simple())).unwrap();
let mut request = Request::new(
url,