Skip to content

fix typo in test

317243f
Select commit
Loading
Failed to load commit list.
Open

Gh 685 review2 #713

fix typo in test
317243f
Select commit
Loading
Failed to load commit list.
Cursor / Cursor Bugbot completed Sep 30, 2025 in 2m 37s

Bugbot Review

Bugbot Analysis Progress (2m 39s elapsed)

✅ Gathered PR context (2s)
✅ Analyzed code changes (1s)
✅ Completed bug detection — 1 potential bug found (2m 32s)
✅ Validation and filtering completed (0s)
✅ Posted analysis results — 1 bug reported (3s)
✅ Analysis completed successfully (0s)

Final Result: Bugbot completed review and found 1 potential issue

Request ID: serverGenReqId_fbb1e616-1d54-4b7d-99c8-1db1a7cc54a5

Details

This is the final PR Bugbot will review for you during this billing cycle

Your free Bugbot reviews will reset on October 14

Details

Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.

To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.

Bug: Node Startup Fails Without Blockchain URL

Removing the --blockchain-service-url parameter from MASQNode::start_standard calls in several tests causes the Node to fail startup. This parameter is required unless --fake-public-key, --crash-point, or --neighborhood-mode zero-hop is also provided, none of which were added.

node/tests/dns_resolve_failure_test.rs#L12-L15

fn dns_resolve_failure_http_response_integration() {
let _node_to_test_against = utils::MASQNode::start_standard(
"dns_resolve_failure_http_response_integration",
None,

node/tests/http_through_node_test.rs#L14-L17

fn http_through_node_integration() {
let _node = utils::MASQNode::start_standard(
"http_through_node_integration",
None,

node/tests/tls_through_node_test.rs#L16-L19

fn tls_through_node_integration() {
let _node = utils::MASQNode::start_standard(
"tls_through_node_integration",
None,

node/tests/initialization_test.rs#L269-L280

#[test]
fn node_creates_log_file_with_heading_integration() {
let config = CommandConfig::new()
.pair("--neighborhood-mode", "standard")
.pair("--ip", "1.0.0.1")
.pair(
"--neighbors",
&format!(
"masq://{}:UJNoZW5p_PDVqEjpr3b-8jZ_93yPG8i5dOAgE1bhK-A@12.23.34.45:5678",
DEFAULT_CHAIN.rec().literal_identifier
),
);

node/tests/dns_resolve_failure_test.rs#L35-L38

fn dns_resolve_failure_tls_response_integration() {
let _node_to_test_against = utils::MASQNode::start_standard(
"dns_resolve_failure_tls_response_integration",
None,

node/tests/connection_shutdown_test.rs#L23-L24

"proxy_client_stream_reader_dies_when_client_stream_is_killed_integration",
Some(CommandConfig::new().pair("--ui-port", &ui_port.to_string())),

node/tests/dump_configuration_test.rs#L23-L24

CommandConfig::new()
.pair("--ui-port", &port.to_string())

node/tests/financials_test.rs#L75-L76

test_name,
Some(CommandConfig::new().pair("--ui-port", &port.to_string())),

node/tests/initialization_test.rs#L158-L160

Some(
CommandConfig::new()
.pair(

node/tests/initialization_test.rs#L225-L227

Some(
CommandConfig::new()
.pair("--ui-port", &port.to_string())

node/tests/node_exits_from_future_panic_test.rs#L69-L70

"node_logfile_does_not_belong_to_root_integration",
Some(CommandConfig::new().pair("--chain", "polygon-amoy")),

node/tests/ui_gateway_test.rs#L30-L32

Some(
CommandConfig::new()
.pair("--ui-port", &port.to_string())

node/tests/ui_gateway_test.rs#L64-L66

Some(
CommandConfig::new()
.pair("--ui-port", &port.to_string())

node/tests/ui_gateway_test.rs#L209-L211

Some(
CommandConfig::new()
.pair("--chain", DEFAULT_CHAIN.rec().literal_identifier)

Fix in Cursor Fix in Web