Skip to content
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
4 changes: 3 additions & 1 deletion crates/apollo_http_server/src/http_server_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ async fn test_response(#[case] index: u16, #[case] tx: impl GatewayTransaction)
assert_eq!(error_str, expected_gateway_client_err_str);
}

// TODO(Einat): turn test back on when port issue is fixed.
#[ignore]
#[rstest]
#[case::missing_version(
0,
Expand All @@ -256,7 +258,7 @@ async fn test_response(#[case] index: u16, #[case] tx: impl GatewayTransaction)
StarknetError {
code: StarknetErrorCode::KnownErrorCode(KnownStarknetErrorCode::MalformedRequest),
message: "Version field is not a valid hex string: badversion".to_string(), //Note: whitespaces are removed when parsing malformed tx jsons
}
}
)]
#[case::old_version(2, Some("0x1"), StarknetError {
code: StarknetErrorCode::KnownErrorCode(
Expand Down