Skip to content

Commit

Permalink
fixup! feat: integrate iOS interop client into interop tests
Browse files Browse the repository at this point in the history
  • Loading branch information
typfel committed Jan 17, 2025
1 parent f4c5666 commit 20496b2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions interop/src/clients/corecrypto/ios.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ use base64::{engine::general_purpose, Engine as _};
use color_eyre::eyre::Result;
use core_crypto::prelude::{KeyPackage, KeyPackageIn};
use std::cell::{Cell, RefCell};
use std::fmt::{Display, Formatter};
use std::fs;
use std::io::{BufRead, BufReader};
use std::process::{Child, ChildStdout, Command, Stdio};
Expand All @@ -46,16 +45,11 @@ enum InteropResult {
}

#[derive(Error, Debug)]
#[error("simulator driver error: {msg}")]
struct SimulatorDriverError {
msg: String,
}

impl Display for SimulatorDriverError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "simulator driver error: {}", self.msg)
}
}

impl SimulatorDriver {
fn new(device: String, application: String) -> Self {
log::info!("launching application: {}", application);
Expand Down

0 comments on commit 20496b2

Please sign in to comment.