Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(ICP_Rosetta): FI-1507: Add debugging information to assert in flaky test #4444

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,9 @@ fn test_start_and_stop_neuron_dissolve() {
// The neuron should now be in DISSOLVING state
assert_eq!(
start_dissolving_response.operations.first().unwrap().status,
Some("COMPLETED".to_owned())
Some("COMPLETED".to_owned()),
"Expected the operation to be completed but got: {:?}",
start_dissolving_response
);
let neuron = list_neurons(&agent).await.full_neurons[0].to_owned();
match neuron.dissolve_state.unwrap() {
Expand Down