Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
t4lz committed Jan 14, 2024
1 parent 01bdecb commit 20aaa9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/operator/queue_splitting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ pub async fn two_users_one_queue(
config_dir: &std::path::PathBuf,
#[future] kube_client: Client,
#[future] sqs_consumer_service: KubeService,
sqs_queue: (String, String),
#[future] sqs_queue: (String, String),
) {
let application = Application::Go21HTTP;
let kube_client = kube_client.await;
let (sqs_queue_name, sqs_queue_url) = sqs_queue;
let (sqs_queue_name, sqs_queue_url) = sqs_queue.await;

let deployed = sqs_consumer_service.await;

Expand Down

0 comments on commit 20aaa9a

Please sign in to comment.