Skip to content

Commit

Permalink
Errant println
Browse files Browse the repository at this point in the history
  • Loading branch information
marcua committed Nov 11, 2023
1 parent fd52880 commit 79c563e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pub struct EmailEntry {

pub fn extract_api_key(output: &Output) -> Result<String, AybError> {
let output_str = std::str::from_utf8(&output.stdout)?;
println!("Now featuring ---{}---", output_str);
let re = Regex::new(r"^Successfully authenticated and saved token (\S+)\n").unwrap();
if re.is_match(output_str) {
let captures = re.captures(output_str).unwrap();
Expand Down

0 comments on commit 79c563e

Please sign in to comment.