diff options
author | eri <eri@inventati.org> | 2024-07-08 13:18:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 11:18:35 +0000 |
commit | 2888193cfe3d1b3317984324add07a5e4e4228dc (patch) | |
tree | ced4d51b83cc9e4f49b953c9e2183e8021c0e0ec /components/net/tests/fetch.rs | |
parent | b243457ccc6cd5a2dab58d9c9ff8b6fee1db6a20 (diff) | |
download | servo-2888193cfe3d1b3317984324add07a5e4e4228dc.tar.gz servo-2888193cfe3d1b3317984324add07a5e4e4228dc.zip |
DevTools: Replace camel case variable names (#32726)
* refactor: rename to snake case
* refactor: more renaming
* chore: format
* chore: clean
Diffstat (limited to 'components/net/tests/fetch.rs')
-rw-r--r-- | components/net/tests/fetch.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net/tests/fetch.rs b/components/net/tests/fetch.rs index 5f04f01cf46..62631706b15 100644 --- a/components/net/tests/fetch.rs +++ b/components/net/tests/fetch.rs @@ -1370,8 +1370,8 @@ fn test_fetch_with_devtools() { headers: headers, body: Some(vec![]), pipeline_id: TEST_PIPELINE_ID, - startedDateTime: devhttprequest.startedDateTime, - timeStamp: devhttprequest.timeStamp, + started_date_time: devhttprequest.started_date_time, + time_stamp: devhttprequest.time_stamp, connect_time: devhttprequest.connect_time, send_time: devhttprequest.send_time, is_xhr: true, |