Skip to content

Commit

Permalink
style(xray-lite): apply cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kikuomax committed Mar 13, 2024
1 parent 528dc44 commit c30170e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions xray-lite/src/namespace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,12 @@ mod tests {
namespace.update_subsegment(&mut subsegment);
assert_eq!(
subsegment
.http.expect("http")
.response.expect("response")
.status.expect("status"),
.http
.expect("http")
.response
.expect("response")
.status
.expect("status"),
200,
);
}
Expand Down Expand Up @@ -263,9 +266,12 @@ mod tests {
namespace.update_subsegment(&mut subsegment);
assert_eq!(
subsegment
.http.expect("http")
.response.expect("response")
.status.expect("status"),
.http
.expect("http")
.response
.expect("response")
.status
.expect("status"),
200,
);
}
Expand Down

0 comments on commit c30170e

Please sign in to comment.