Skip to content

Commit

Permalink
remove debugging in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahlukus committed Jun 14, 2024
1 parent e1dcb22 commit 7d405dd
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/ssm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ mod test {
.overwrite(true)
.send()
.await?;

let env_vars: HashMap<String, String> = HashMap::from([
("EXISTING".to_string(), "existingvalue".to_string()),
(
Expand All @@ -190,15 +189,7 @@ mod test {
("DB_URL".to_string(), "mysql2://u:p@host:3306".to_string()),
("NR_KEY".to_string(), "z6y5x4w3v2u1".to_string()),
]);

match get_envs(env_vars.clone()).await {
Ok(result) => println!("BLAH ::: {:?}", result),
Err(e) => println!("Error: {:?}", e),
}

let results = get_envs(env_vars).await.expect("Should fetch parameters");


assert_eq!(results, expected);
Ok(())
}
Expand Down

0 comments on commit 7d405dd

Please sign in to comment.