Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyeo1010 committed Nov 2, 2023
1 parent 4941247 commit 454455a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ class CobraAppTestUITests: XCTestCase {
}
}


func testProcessMessageStack() throws {
let cobra: Cobra = try Cobra(accessKey: accessKey)
cobra.delete()
Expand Down
4 changes: 2 additions & 2 deletions binding/rust/src/cobra.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ mod tests {
.expect("Pass the AccessKey in using the PV_ACCESS_KEY env variable");

let mut inner = CobraInner::init(
&access_key.as_str(),
access_key,
pv_library_path()
).expect("Unable to create Cobra");

Expand All @@ -392,7 +392,7 @@ mod tests {
assert!(err.message_stack.len() > 0);
assert!(err.message_stack.len() < 8);
} else {
assert!(res.unwrap() == true);
assert!(res.unwrap() == -1.0);
}
}
}

0 comments on commit 454455a

Please sign in to comment.