Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
inahga committed Sep 27, 2023
1 parent 466055b commit 0809b56
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions integration_tests/tests/daphne.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mod common;
#[tokio::test(flavor = "multi_thread")]
#[ignore = "Daphne does not yet publish a leader container image"]
async fn daphne_janus() {
static TEST_NAME: &'static str = "daphne_janus";
static TEST_NAME: &str = "daphne_janus";
install_test_trace_subscriber();

// Start servers.
Expand Down Expand Up @@ -53,7 +53,7 @@ async fn daphne_janus() {
#[tokio::test(flavor = "multi_thread")]
#[ignore = "Daphne does not currently support DAP-07 (issue #1669)"]
async fn janus_daphne() {
static TEST_NAME: &'static str = "daphne_janus";
static TEST_NAME: &str = "daphne_janus";
install_test_trace_subscriber();

// Start servers.
Expand Down
10 changes: 5 additions & 5 deletions integration_tests/tests/janus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl<'a> JanusPair<'a> {
/// This test exercises Prio3Count with Janus as both the leader and the helper.
#[tokio::test(flavor = "multi_thread")]
async fn janus_janus_count() {
static TEST_NAME: &'static str = "janus_janus_count";
static TEST_NAME: &str = "janus_janus_count";
install_test_trace_subscriber();

// Start servers.
Expand All @@ -74,7 +74,7 @@ async fn janus_janus_count() {
/// This test exercises Prio3Sum with Janus as both the leader and the helper.
#[tokio::test(flavor = "multi_thread")]
async fn janus_janus_sum_16() {
static TEST_NAME: &'static str = "janus_janus_sum_16";
static TEST_NAME: &str = "janus_janus_sum_16";
install_test_trace_subscriber();

// Start servers.
Expand All @@ -100,7 +100,7 @@ async fn janus_janus_sum_16() {
/// This test exercises Prio3Histogram with Janus as both the leader and the helper.
#[tokio::test(flavor = "multi_thread")]
async fn janus_janus_histogram_4_buckets() {
static TEST_NAME: &'static str = "janus_janus_histogram_4_buckets";
static TEST_NAME: &str = "janus_janus_histogram_4_buckets";
install_test_trace_subscriber();

// Start servers.
Expand Down Expand Up @@ -129,7 +129,7 @@ async fn janus_janus_histogram_4_buckets() {
/// This test exercises the fixed-size query type with Janus as both the leader and the helper.
#[tokio::test(flavor = "multi_thread")]
async fn janus_janus_fixed_size() {
static TEST_NAME: &'static str = "janus_janus_fixed_size";
static TEST_NAME: &str = "janus_janus_fixed_size";
install_test_trace_subscriber();

// Start servers.
Expand Down Expand Up @@ -158,7 +158,7 @@ async fn janus_janus_fixed_size() {
// This test exercises Prio3SumVec with Janus as both the leader and the helper.
#[tokio::test(flavor = "multi_thread")]
async fn janus_janus_sum_vec() {
static TEST_NAME: &'static str = "janus_janus_sum_vec";
static TEST_NAME: &str = "janus_janus_sum_vec";
install_test_trace_subscriber();

let container_client = container_client();
Expand Down

0 comments on commit 0809b56

Please sign in to comment.