Skip to content

Commit 7d405dd

Browse files
committed
remove debugging in test
1 parent e1dcb22 commit 7d405dd

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/ssm.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ mod test {
166166
.overwrite(true)
167167
.send()
168168
.await?;
169-
170169
let env_vars: HashMap<String, String> = HashMap::from([
171170
("EXISTING".to_string(), "existingvalue".to_string()),
172171
(
@@ -190,15 +189,7 @@ mod test {
190189
("DB_URL".to_string(), "mysql2://u:p@host:3306".to_string()),
191190
("NR_KEY".to_string(), "z6y5x4w3v2u1".to_string()),
192191
]);
193-
194-
match get_envs(env_vars.clone()).await {
195-
Ok(result) => println!("BLAH ::: {:?}", result),
196-
Err(e) => println!("Error: {:?}", e),
197-
}
198-
199192
let results = get_envs(env_vars).await.expect("Should fetch parameters");
200-
201-
202193
assert_eq!(results, expected);
203194
Ok(())
204195
}

0 commit comments

Comments
 (0)