Skip to content

Commit

Permalink
Use newly published deny (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle authored Mar 5, 2024
1 parent 973b6ec commit db791ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ jobs:

deny-check:
runs-on: ubuntu-22.04
if: false # skip until I've updated the action
steps:
- uses: actions/checkout@v4
- name: deny check
Expand Down
4 changes: 4 additions & 0 deletions src/cli/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,7 @@ mod tests {
let local_addr = available_addr(&AddressType::Random).await;
let proxy = crate::cli::Proxy {
port: local_addr.port(),
qcmp_port: 0,
..<_>::default()
};

Expand Down Expand Up @@ -669,6 +670,7 @@ mod tests {

let proxy = crate::cli::Proxy {
port: local_addr.port(),
qcmp_port: 0,
..<_>::default()
};

Expand Down Expand Up @@ -720,6 +722,7 @@ mod tests {
config,
Some(crate::cli::Proxy {
port: local_addr.port(),
qcmp_port: 0,
..<_>::default()
}),
None,
Expand Down Expand Up @@ -792,6 +795,7 @@ mod tests {
let local_addr = available_addr(&AddressType::Random).await;
let proxy = crate::cli::Proxy {
port: local_addr.port(),
qcmp_port: 0,
..<_>::default()
};

Expand Down
1 change: 1 addition & 0 deletions src/net/xds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ mod tests {
let client_proxy = crate::cli::Proxy {
port: client_addr.port(),
management_server: vec![format!("http://[::1]:{}", xds_port).parse().unwrap()],
qcmp_port: 0,
..<_>::default()
};

Expand Down
1 change: 1 addition & 0 deletions src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ impl TestHelper {
crate::cli::Proxy {
// Use an ephemeral port unless the test specifies otherwise
port: 0,
qcmp_port: 0,
..Default::default()
}
});
Expand Down

0 comments on commit db791ed

Please sign in to comment.