Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonHartley committed Mar 23, 2024
1 parent 5144367 commit 835b0c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coerce/tests/test_remote_handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,13 @@ pub async fn test_remote_handle_from_json() {
"TestActor.SetStatusRequest",
actor.id.clone(),
b"{\"status\": \"Active\"}",
true,
)
.await;

let current_status = actor.send(GetStatusRequest).await;

assert_eq!(res, Ok(b"\"Ok\"".to_vec()));
assert_eq!(res, Ok(Some(b"\"Ok\"".to_vec())));

assert_eq!(initial_status, Ok(GetStatusResponse::None));
assert_eq!(
Expand Down

0 comments on commit 835b0c6

Please sign in to comment.